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