Response.cs 234 B

123456789
  1. namespace Application.Features.Director.Roles.Get
  2. {
  3. public class Response
  4. {
  5. public required string ID { get; set; }
  6. public string? Name { get; set; }
  7. public int ClaimsCount { get; set; } = 0;
  8. }
  9. }