using Application.Abstractions.Messaging; using SharedKernel.Results; namespace Application.Features.Api.Crew.UpdateMember; public sealed record Command( int CrewMemberID, string Nickname, string? Role, int SortOrder, bool IsActive ) : ICommand;