| 12345678910111213141516 |
- 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? SenderSID,
- string? SenderChannelName,
- string? SenderChannelHandle,
- string Title,
- bool IsRead,
- bool IsSystem,
- DateTime CreatedAt
- );
|