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,20 @@
<?php
namespace App\Schedule;
use App\User\User;
use DateTimeImmutable;
final readonly class RescheduleScheduleDto
{
/**
* @param list<RescheduleScheduleAssignmentDto> $assignments
*/
public function __construct(
public int $scheduleId,
public User $user,
public DateTimeImmutable $startDate,
public DateTimeImmutable $targetDate,
public array $assignments,
) {}
}