26 lines
762 B
C#
Raw Normal View History

2025-04-01 13:41:50 +08:00
using System.Collections.ObjectModel;
using System.Windows.Input;
namespace RIZO.Client.BaseModule.Models
{
public class UserModel
{
public int Index { get; set; }
public int UserId { get; set; }
public string UserIcon { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
public int Age { get; set; }
public string RealName { get; set; }
public ObservableCollection<RoleModel> Roles { get; set; } = new ObservableCollection<RoleModel>();
public ICommand EditCommand { get; set; }
public ICommand DeleteCommand { get; set; }
public ICommand RoleCommand { get; set; }
public ICommand PwdCommand { get; set; }
}
}