Response.cs 208 B

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