Command.cs 389 B

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