Command.cs 434 B

12345678910111213141516171819
  1. using MediatR;
  2. using Microsoft.AspNetCore.Http;
  3. namespace Application.Features.MemberGrade.Update
  4. {
  5. public sealed record Command(
  6. int ID,
  7. string KorName,
  8. string EngName,
  9. string? Description,
  10. short Order,
  11. IFormFile? ImageFile,
  12. bool IsImageRemove,
  13. string? TextColor,
  14. int RequiredExp,
  15. long RequiredAttendance,
  16. bool IsActive
  17. ) : IRequest;
  18. }