Recent Items
This commit is contained in:
parent
2529b728ba
commit
f703567aed
10 changed files with 62 additions and 12 deletions
|
|
@ -1,3 +1,4 @@
|
|||
using InkForge.Common.Controllers;
|
||||
using InkForge.Common.ReactiveUI;
|
||||
|
||||
using ReactiveUI;
|
||||
|
|
@ -8,7 +9,15 @@ public class CreateWorkspaceViewModel : LandingViewModelBase
|
|||
{
|
||||
public override string? UrlPathSegment => null;
|
||||
|
||||
public CreateWorkspaceViewModel(LandingViewModel landing) : base(landing)
|
||||
private string workspaceName;
|
||||
|
||||
public string WorkspaceName
|
||||
{
|
||||
get => workspaceName;
|
||||
set => this.RaiseAndSetIfChanged(ref workspaceName, value);
|
||||
}
|
||||
|
||||
public CreateWorkspaceViewModel(LandingViewModel landing, WorkspaceController workspace) : base(landing)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue