namespace Brizco.Domain.CommandQueries.Commands; public record CreateShiftPlanCommand(DateTime PlanDate,Guid ShiftId,List UserIds) :IRequest; public record UpdateShiftPlanCommand(Guid Id,DateTime PlanDate, Guid ShiftId, List UserIds) : IRequest; public record DeleteShiftPlanCommand(Guid Id) : IRequest;