Command.cs 335 B

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