Command.cs 275 B

123456789101112
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Crew.UpdateMember;
  4. public sealed record Command(
  5. int CrewMemberID,
  6. string Nickname,
  7. string? Role,
  8. int SortOrder,
  9. bool IsActive
  10. ) : ICommand<Result>;