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