Response.cs 291 B

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