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