mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
19 lines
425 B
C#
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; }
|
|
}
|
|
} |