Files
modernkeepass/ModernKeePass/ViewModels/HistoryVm.cs
BONNEVILLE Geoffroy 2b48b64f2f Hamburger button menu is now a User Control
WIP History in Entry page
2018-06-14 18:38:05 +02:00

19 lines
425 B
C#

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