| 1234567891011121314 |
- namespace Application.Features.Auth.GetProfile;
- public sealed record Response(
- int ID,
- string Sid,
- string Email,
- string? Name,
- string? Thumb,
- string? Summary,
- string? GradeName,
- bool IsEmailVerified,
- bool IsCreator,
- DateTime CreatedAt
- );
|