mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 16:10:16 -04:00
32 lines
836 B
C#
32 lines
836 B
C#
using System;
|
|
using Windows.UI.Xaml.Controls;
|
|
using ModernKeePass.Application.Common.Interfaces;
|
|
using ModernKeePass.Domain.AOP;
|
|
using ModernKeePass.Domain.Interfaces;
|
|
|
|
namespace ModernKeePass.ViewModels.ListItems
|
|
{
|
|
public class ListMenuItemViewModel : NotifyPropertyChangedBase, IIsEnabled, ISelectableModel
|
|
{
|
|
private bool _isSelected;
|
|
|
|
public string Title { get; set; }
|
|
|
|
public string Group { get; set; } = "_";
|
|
public Type PageType { get; set; }
|
|
public Symbol SymbolIcon { get; set; }
|
|
public bool IsEnabled { get; set; } = true;
|
|
|
|
public bool IsSelected
|
|
{
|
|
get => _isSelected;
|
|
set => SetProperty(ref _isSelected, value);
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return Title;
|
|
}
|
|
}
|
|
}
|