Hamburger button menu is now a User Control

WIP History in Entry page
This commit is contained in:
BONNEVILLE Geoffroy
2018-06-14 18:38:05 +02:00
parent 799b896bfe
commit 2b48b64f2f
10 changed files with 299 additions and 169 deletions

View 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; }
}
}