| 12345678910111213 |
- using Application.Abstractions.Messaging;
- 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
- ) : ICommand<Response>;
|