RoleAuthorityDto.cs 295 B

1234567891011121314
  1. namespace Hotline.Share.Dtos.Roles
  2. {
  3. public record RoleAuthorityDto
  4. {
  5. public string RoleId { get; set; }
  6. public string RoleCode { get; set; }
  7. public List<string> SystemMenuArr { get; set; }
  8. public List<string> SystemButtonArr { get; set; }
  9. }
  10. }