mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
Migrated code from code behind pages to view models Auto select Recents if there are any recent items WIP auto focus on password box when opening database
18 lines
415 B
C#
18 lines
415 B
C#
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); }
|
|
}
|
|
}
|
|
}
|