InkForge/app/InkForge.Common/ViewModels/Landing/CreateWorkspaceViewModel.cs
2024-02-10 23:47:45 +01:00

23 lines
517 B
C#

using InkForge.Common.Controllers;
using InkForge.Common.ReactiveUI;
using ReactiveUI;
namespace InkForge.Common.ViewModels.Landing;
public class CreateWorkspaceViewModel : LandingViewModelBase
{
public override string? UrlPathSegment => null;
private string workspaceName;
public string WorkspaceName
{
get => workspaceName;
set => this.RaiseAndSetIfChanged(ref workspaceName, value);
}
public CreateWorkspaceViewModel(LandingViewModel landing, WorkspaceController workspace) : base(landing)
{
}
}