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