RoleEntity.cs 764 B

1234567891011121314151617181920212223
  1. using CommunityToolkit.Mvvm.ComponentModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace ivf_tl_Entity.Entity.AppSetting
  8. {
  9. public class RoleEntity : ObservableObject
  10. {
  11. public int num { get; set; }
  12. public long id { get; set; }
  13. public List<Business> permissions { get; set; } = new List<Business>();
  14. private string _name;
  15. public string name { get => _name; set => SetProperty(ref _name, value); }
  16. private string _remark;
  17. public string remark { get => _remark; set => SetProperty(ref _remark, value); }
  18. public string roleKey { get; set; }
  19. public int state { get; set; }
  20. }
  21. }