| 123456789101112131415161718 |
- using Application.Abstractions.Messaging;
- using SharedKernel.Results;
- 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,
- string LinkTarget,
- short Order,
- bool IsActive,
- DateTime? StartAt,
- DateTime? EndAt
- ) : ICommand<Result>;
|