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