Command.cs 324 B

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