Command.cs 239 B

123456789
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Member.Follow.Toggle;
  4. public sealed record Command(
  5. int FollowerMemberID,
  6. string FolloweeSID
  7. ) : ICommand<Result<Response>>;