Command.cs 384 B

1234567891011121314151617
  1. using MediatR;
  2. using Microsoft.AspNetCore.Http;
  3. namespace Application.Features.Banner.Item.Create
  4. {
  5. public sealed record Command(
  6. int PositionID,
  7. string Subject,
  8. IFormFile? DesktopImage,
  9. IFormFile? MobileImage,
  10. string? Link,
  11. short Order,
  12. bool IsActive,
  13. DateTime? StartAt,
  14. DateTime? EndAt
  15. ) : IRequest;
  16. }