2025-04-01 13:41:50 +08:00

24 lines
565 B
C#

using Prism.Mvvm;
using System.Windows.Input;
namespace RIZO.Client.BaseModule.Models
{
public class RoleModel : BindableBase
{
public int RoleId { get; set; }
public string RoleName { get; set; }
public int State { get; set; }
private bool _isSelected;
public bool IsSelected
{
get => _isSelected;
set { SetProperty<bool>(ref _isSelected, value); }
}
public ICommand DeleteCommand { get; set; }
public ICommand ItemSelectedCommand { get; set; }
}
}