add schedule rescheduling

This commit is contained in:
Yisroel Baum 2026-08-19 22:44:14 +03:00
parent b8eeb093d3
commit 7576ccaf09
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
9 changed files with 314 additions and 5 deletions

View file

@ -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,
) {}
}