Command.cs 354 B

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