Command.cs 267 B

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