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

13 lines
268 B
C#
Raw Normal View History

2024-02-10 10:38:28 +01:00
using InkForge.Common.ReactiveUI;
namespace InkForge.Common.ViewModels.Landing;
public class OpenRecentViewModel : LandingViewModelBase
{
public override string? UrlPathSegment => null;
public OpenRecentViewModel(LandingViewModel landing) : base(landing)
{
}
}