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

12 lines
268 B
C#

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