Command.cs 427 B

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