Command.cs 303 B

1234567891011121314
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.Crew.SaveCrew;
  4. public sealed record Command(
  5. int? ID,
  6. int ChannelID,
  7. int MemberID,
  8. string Name,
  9. string? Description,
  10. int? MinAmount,
  11. bool IsActive
  12. ) : ICommand<Result>;