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