Command.cs 220 B

123456
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.MyPage.Sns.Disconnect;
  4. public sealed record Command(int MemberID, string Provider) : ICommand<Result<Response>>;