Command.cs 279 B

1234567891011121314
  1. using MediatR;
  2. namespace Application.Features.Popup.Create
  3. {
  4. public sealed record Command(
  5. string Subject,
  6. string? Content,
  7. string? Link,
  8. DateTime? StartAt,
  9. DateTime? EndAt,
  10. short Order,
  11. bool IsActive
  12. ) : IRequest<int>;
  13. }