24 lines
565 B
C#
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; }
|
|||
|
|
}
|
|||
|
|
}
|