| 123456789101112131415161718 |
- using Application.Abstractions.Messaging;
- using Microsoft.AspNetCore.Http;
- namespace Application.Features.Banner.Item.Update
- {
- public sealed record Command(
- int ID,
- int PositionID,
- string Subject,
- IFormFile? DesktopImage,
- IFormFile? MobileImage,
- string? Link,
- short Order,
- bool IsActive,
- DateTime? StartAt,
- DateTime? EndAt
- ) : ICommand;
- }
|