| 123456789101112 |
- using Application.Abstractions.Messaging;
- using SharedKernel.Results;
- namespace Application.Features.Admin.Document.Update;
- public sealed record Command(
- int ID,
- string Code,
- string Subject,
- string? Content,
- bool IsActive
- ) : ICommand<Result>;
|