| 123456789101112131415 |
- using Application.Abstractions.Messaging;
- using SharedKernel.Results;
- namespace Application.Features.Api.Note.SendNote;
- public sealed record Command(
- int ReceiverMemberID,
- string Title,
- string Content,
- bool IsSystem = false,
- string? RelatedType = null,
- int? RelatedID = null,
- int SenderMemberID = 0,
- bool SendToRandom = false
- ) : ICommand<Result<Response>>;
|