using Brizco.Domain.Entities.Shift; namespace Brizco.Domain.CommandQueries.Commands; public sealed record CreateShiftCommand(string Title, TimeSpan StartAt, TimeSpan EndAt, string Description ) : IRequest; public sealed record UpdateShiftCommand(Guid Id,string Title, TimeSpan StartAt, TimeSpan EndAt, string Description) : IRequest; public sealed record DeleteShiftCommand(Guid Id) : IRequest;