| 123456789101112131415161718 |
- namespace Application.Features.Api.V1.Members.List;
- public sealed record Response(int Total, int Page, int Size, List<Response.Row> Items)
- {
- /// <summary>
- /// 회원 row. ChannelSID/ChannelName 은 채널 소유 회원만 채워짐 (그 외 null).
- /// </summary>
- public sealed record Row(
- int ID,
- string SID,
- string? Name,
- string EmailMasked,
- bool HasChannel,
- string? ChannelSID,
- string? ChannelName,
- DateTime CreatedAt
- );
- }
|