| 12345678 |
- namespace Application.Features.Api.Note.GetInbox;
- public sealed record Response(int Total, int UnreadCount, IReadOnlyList<NoteItem> List);
- public sealed record NoteItem(
- int ID, int SenderMemberID, string? SenderName, string Title,
- bool IsRead, bool IsSystem, DateTime CreatedAt
- );
|