using CommunityToolkit.Mvvm.ComponentModel; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ivf_tl_Entity.Entity.AppSetting { public class UserManageEntity : ObservableObject { public int num { get; set; } private string _account; public string account { get => _account; set => SetProperty(ref _account, value); } public string email { get; set; } public long id { get; set; } public string phone { get; set; } public int state { get; set; } private string _username; public string username { get => _username; set => SetProperty(ref _username, value); } private string _roleString; public string RoleString { get => _roleString; set => SetProperty(ref _roleString, value); } private string _busString; public string BusString { get => _busString; set => SetProperty(ref _busString, value); } public List roles { get; set; } = new List(); public List permissionDTOS { get; set; } = new List(); } }