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

15 lines
297 B
C#
Raw Normal View History

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;
public CreateWorkspaceViewModel(LandingViewModel landing) : base(landing)
{
}
}