using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Api.MyPage.UpdateChatSettings; public sealed record Command( int MemberID, bool AllowInvite, bool AllowWhisper, bool ShowFollowingOnline ) : ICommand;