10 lines
360 B
C#
10 lines
360 B
C#
namespace Brizco.Domain.CommandQueries.Commands;
|
|
|
|
public record CreateShiftPlanCommand(DateTime PlanDate,Guid ShiftId,List<Guid> UserIds)
|
|
:IRequest<ShiftPlanLDto>;
|
|
|
|
public record UpdateShiftPlanCommand(Guid Id,DateTime PlanDate, Guid ShiftId, List<Guid> UserIds)
|
|
: IRequest<bool>;
|
|
|
|
public record DeleteShiftPlanCommand(Guid Id)
|
|
: IRequest<bool>; |