16 lines
346 B
PHP
16 lines
346 B
PHP
<?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,
|
|
) {}
|
|
}
|