mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00
19 lines
438 B
C#
19 lines
438 B
C#
using Windows.Storage;
|
|
using ModernKeePass.Common;
|
|
|
|
namespace ModernKeePass.ViewModels
|
|
{
|
|
public class RecentItemVm: NotifyPropertyChangedBase
|
|
{
|
|
private bool _isSelected;
|
|
public string Token { get; set; }
|
|
public string Name { get; set; }
|
|
|
|
public bool IsSelected
|
|
{
|
|
get { return _isSelected; }
|
|
internal set { SetProperty(ref _isSelected, value); }
|
|
}
|
|
}
|
|
}
|