Command.cs 306 B

1234567891011121314
  1. using Application.Abstractions.Messaging;
  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. ) : ICommand<int>;
  13. }