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