using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Api.Member.Follow.Toggle; public sealed record Command( int FollowerMemberID, string FolloweeSID ) : ICommand<Result<Response>>;