using MediatR; namespace Application.Features.Popup.Update { public sealed record Command( int ID, string Subject, string? Content, string? Link, DateTime? StartAt, DateTime? EndAt, short Order, bool IsActive ) : IRequest; }