InkForge/app/InkForge.Common/ViewModels/Landing/CreateWorkspaceViewModel.cs
2024-02-10 10:38:28 +01:00

14 lines
297 B
C#

using InkForge.Common.ReactiveUI;
using ReactiveUI;
namespace InkForge.Common.ViewModels.Landing;
public class CreateWorkspaceViewModel : LandingViewModelBase
{
public override string? UrlPathSegment => null;
public CreateWorkspaceViewModel(LandingViewModel landing) : base(landing)
{
}
}