using Application.Abstractions.Messaging; using SharedKernel.Results; using Microsoft.AspNetCore.Http; namespace Application.Features.Admin.Banner.Item.Update; public sealed record Command( int ID, int PositionID, string Subject, IFormFile? DesktopImage, IFormFile? MobileImage, bool RemoveDesktop, bool RemoveMobile, string? Link, string LinkTarget, short Order, bool IsActive, DateTime? StartAt, DateTime? EndAt ) : ICommand;