using Brizco.Domain.Entities.Shift; namespace Brizco.Domain.CommandQueries.Commands; public sealed record CreateComplexCommand(string Name, string Address, string SupportPhone) : IRequest; public sealed record UpdateComplexCommand(Guid Id, string Name, string Address, string SupportPhone) : IRequest; public sealed record DeleteComplexCommand(Guid Id) : IRequest;