| 1234567891011121314151617181920212223 |
- 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 RoleEntity : ObservableObject
- {
- public int num { get; set; }
- public long id { get; set; }
- public List<Business> permissions { get; set; } = new List<Business>();
- private string _name;
- public string name { get => _name; set => SetProperty(ref _name, value); }
- private string _remark;
- public string remark { get => _remark; set => SetProperty(ref _remark, value); }
- public string roleKey { get; set; }
- public int state { get; set; }
- }
- }
|