using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Api.Crew.DeclineInvite; public sealed record Command( int InvitationID, int MemberID ) : ICommand<Result<Response>>;