| 12345678910111213141516 |
- using Application.Abstractions.Messaging;
- namespace Application.Features.Admin.Popup.Update
- {
- public sealed record Command(
- int ID,
- int PositionID,
- string Subject,
- string? Content,
- string? Link,
- DateTime? StartAt,
- DateTime? EndAt,
- short Order,
- bool IsActive
- ) : ICommand;
- }
|