mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
Remove some useless code (again)
Improve some visuals
This commit is contained in:
@@ -1,12 +1,10 @@
|
||||
using GalaSoft.MvvmLight;
|
||||
using ModernKeePass.Domain.Dtos;
|
||||
using ModernKeePass.Domain.Interfaces;
|
||||
|
||||
namespace ModernKeePass.ViewModels.ListItems
|
||||
{
|
||||
public class RecentItemVm: ObservableObject, ISelectableModel
|
||||
public class RecentItemVm: ObservableObject
|
||||
{
|
||||
private bool _isSelected;
|
||||
private string _name;
|
||||
private string _token;
|
||||
private string _path;
|
||||
@@ -29,12 +27,6 @@ namespace ModernKeePass.ViewModels.ListItems
|
||||
set { Set(() => Path, ref _path, value); }
|
||||
}
|
||||
|
||||
public bool IsSelected
|
||||
{
|
||||
get { return _isSelected; }
|
||||
set { Set(() => IsSelected, ref _isSelected, value); }
|
||||
}
|
||||
|
||||
public RecentItemVm(FileInfo file)
|
||||
{
|
||||
Token = file.Id;
|
||||
|
Reference in New Issue
Block a user