add set scheduling api
This commit is contained in:
parent
bdb266746d
commit
98ae9bf088
20 changed files with 935 additions and 1 deletions
15
backend/app/Schedule/CreateScheduleAssignmentDto.php
Normal file
15
backend/app/Schedule/CreateScheduleAssignmentDto.php
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
namespace App\Schedule;
|
||||
|
||||
use App\Element\Element;
|
||||
use DateTimeImmutable;
|
||||
|
||||
final readonly class CreateScheduleAssignmentDto
|
||||
{
|
||||
public function __construct(
|
||||
public Element $element,
|
||||
public DateTimeImmutable $scheduledDate,
|
||||
public int $position,
|
||||
) {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue