using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Admin.Popup.Create; public sealed record Command( int PositionID, string Subject, string? Content, string? Link, DateTime? StartAt, DateTime? EndAt, short Order, bool IsActive ) : ICommand>;