Recent Items
This commit is contained in:
parent
2529b728ba
commit
f703567aed
10 changed files with 62 additions and 12 deletions
|
|
@ -1,3 +1,5 @@
|
|||
using System.Collections.ObjectModel;
|
||||
|
||||
using InkForge.Common.ReactiveUI;
|
||||
|
||||
namespace InkForge.Common.ViewModels.Landing;
|
||||
|
|
@ -5,6 +7,9 @@ namespace InkForge.Common.ViewModels.Landing;
|
|||
public class OpenRecentViewModel : LandingViewModelBase
|
||||
{
|
||||
public override string? UrlPathSegment => null;
|
||||
private readonly ReadOnlyObservableCollection<RecentItemViewModel> recentItems;
|
||||
|
||||
public ReadOnlyObservableCollection<RecentItemViewModel> RecentItems => recentItems;
|
||||
|
||||
public OpenRecentViewModel(LandingViewModel landing) : base(landing)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue