using Application.Abstractions.Messaging; namespace Application.Features.Admin.Member.List.Approve; public sealed record Command( int MemberID, bool IsReceiveSMS, bool IsReceiveEmail, bool IsReceiveNote, bool IsDisclosureInvest ) : ICommand;