namespace Application.Features.Admin.Member.List.Approve; public sealed class Response { public int MemberID { get; init; } public bool IsReceiveSMS { get; init; } public DateTime? ReceiveSMSConsentAt { get; init; } public bool IsReceiveEmail { get; init; } public DateTime? ReceiveEmailConsentAt { get; init; } public bool IsReceiveNote { get; init; } public DateTime? ReceiveNoteConsentAt { get; init; } public bool IsDisclosureInvest { get; init; } public DateTime? DisclosureInvestConsentAt { get; init; } }