Response.cs 278 B

1234567891011121314
  1. namespace Application.Features.Auth.GetProfile;
  2. public sealed record Response(
  3. int ID,
  4. string Sid,
  5. string Email,
  6. string? Name,
  7. string? Thumb,
  8. string? Summary,
  9. string? GradeName,
  10. bool IsEmailVerified,
  11. bool IsCreator,
  12. DateTime CreatedAt
  13. );