4 lines
241 B
C#
4 lines
241 B
C#
|
|
namespace Brizco.Core.QuartzServices.Commands;
|
|||
|
|
|
|||
|
|
public record SetShiftPlanNotificationScheduleCommand(Guid ShiftPlanId) : IRequest<bool>;
|
|||
|
|
public record CreateShiftPlanNotificationsCommand(Guid ShiftPlanId , bool InStart) : IRequest<bool>;
|