Command.cs 239 B

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