Command.cs 246 B

12345678910
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Crew.JoinByCode;
  4. public sealed record Command(
  5. string InviteCode,
  6. int MemberID,
  7. string Nickname
  8. ) : ICommand<Result<Response>>;