| 1234567891011121314151617 |
- namespace Application.Features.MemberGrade.Get
- {
- public sealed record Response(
- int ID,
- string KorName,
- string EngName,
- string? Description,
- short Order,
- string? Image,
- string? TextColor,
- int RequiredExp,
- long RequiredAttendance,
- bool IsActive,
- DateTime? UpdatedAt,
- DateTime CreatedAt
- );
- }
|