using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Api.Crew.SaveCrew; public sealed record Command( int? ID, int ChannelID, int MemberID, string Name, string? Description, int? MinAmount, bool IsActive ) : ICommand;