Response.cs 509 B

123456789101112131415161718
  1. namespace Application.Features.Api.V1.Members.List;
  2. public sealed record Response(int Total, int Page, int Size, List<Response.Row> Items)
  3. {
  4. /// <summary>
  5. /// 회원 row. ChannelSID/ChannelName 은 채널 소유 회원만 채워짐 (그 외 null).
  6. /// </summary>
  7. public sealed record Row(
  8. int ID,
  9. string SID,
  10. string? Name,
  11. string EmailMasked,
  12. bool HasChannel,
  13. string? ChannelSID,
  14. string? ChannelName,
  15. DateTime CreatedAt
  16. );
  17. }