mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 08:00:16 -04:00
Hamburger button menu is now a User Control
WIP History in Entry page
This commit is contained in:
19
ModernKeePass/ViewModels/HistoryVm.cs
Normal file
19
ModernKeePass/ViewModels/HistoryVm.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
using ModernKeePass.Interfaces;
|
||||
|
||||
namespace ModernKeePass.ViewModels
|
||||
{
|
||||
public class HistoryVm: IHasSelectableObject
|
||||
{
|
||||
public IEnumerable<IPwEntity> History { get; }
|
||||
|
||||
public HistoryVm() { }
|
||||
|
||||
public HistoryVm(IEnumerable<IPwEntity> history)
|
||||
{
|
||||
History = history;
|
||||
}
|
||||
|
||||
public ISelectableModel SelectedItem { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user