namespace Brizco.Domain.CommandQueries.Commands; public record CreateShiftPlanCommand(long PlanDate,Guid ShiftId,Guid RoutineId,Guid SupervisionUserId, List> UserAndPositionIds) :IRequest; public record UpdateShiftPlanCommand(Guid Id,long PlanDate, Guid ShiftId, Guid RoutineId, Guid SupervisionUserId, List> UserAndPositionIds) : IRequest; public record DeleteShiftPlanCommand(Guid Id) : IRequest;