2024-02-10 23:47:45 +01:00
|
|
|
using System.Collections.ObjectModel;
|
|
|
|
|
|
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;
|
2024-02-10 23:47:45 +01:00
|
|
|
private readonly ReadOnlyObservableCollection<RecentItemViewModel> recentItems;
|
|
|
|
|
|
|
|
|
|
public ReadOnlyObservableCollection<RecentItemViewModel> RecentItems => recentItems;
|
2024-02-10 10:38:28 +01:00
|
|
|
|
|
|
|
|
public OpenRecentViewModel(LandingViewModel landing) : base(landing)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|