add schedule rescheduling
This commit is contained in:
parent
b8eeb093d3
commit
7576ccaf09
9 changed files with 314 additions and 5 deletions
|
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
namespace App\Schedule\UseCases\RescheduleSchedule;
|
||||
|
||||
use App\User\User;
|
||||
|
||||
final readonly class RescheduleScheduleRequest
|
||||
{
|
||||
public function __construct(
|
||||
public int $scheduleId,
|
||||
public User $user,
|
||||
public ?string $startDate,
|
||||
public ?string $targetDate,
|
||||
public ?string $workloadPlacement,
|
||||
) {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue