| 1234567891011121314151617 |
- using Application.Abstractions.Messaging;
- using Microsoft.AspNetCore.Http;
- namespace Application.Features.Admin.MemberGrade.Create
- {
- public sealed record Command(
- string KorName,
- string EngName,
- string? Description,
- short Order,
- IFormFile? ImageFile,
- string? TextColor,
- int RequiredExp,
- long RequiredAttendance,
- bool IsActive
- ) : ICommand;
- }
|