InkForge/app/InkForge.Common/ViewModels/Landing/CreateWorkspaceViewModel.cs

24 lines
517 B
C#
Raw Normal View History

2024-02-10 23:47:45 +01:00
using InkForge.Common.Controllers;
2024-02-10 10:38:28 +01:00
using InkForge.Common.ReactiveUI;
using ReactiveUI;
namespace InkForge.Common.ViewModels.Landing;
public class CreateWorkspaceViewModel : LandingViewModelBase
{
public override string? UrlPathSegment => null;
2024-02-10 23:47:45 +01:00
private string workspaceName;
public string WorkspaceName
{
get => workspaceName;
set => this.RaiseAndSetIfChanged(ref workspaceName, value);
}
public CreateWorkspaceViewModel(LandingViewModel landing, WorkspaceController workspace) : base(landing)
2024-02-10 10:38:28 +01:00
{
}
}