Command.cs 278 B

1234567891011
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.MyPage.UpdateChatSettings;
  4. public sealed record Command(
  5. int MemberID,
  6. bool AllowInvite,
  7. bool AllowWhisper,
  8. bool ShowFollowingOnline
  9. ) : ICommand<Result>;