Command.cs 297 B

123456789101112131415
  1. using MediatR;
  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. ) : IRequest;
  14. }