snapshot schedule source data

This commit is contained in:
Yisroel Baum 2026-08-10 22:36:14 +03:00
parent 14fe2fcb46
commit f500bd6095
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
14 changed files with 84 additions and 87 deletions

View file

@ -2,13 +2,17 @@
namespace App\Schedule;
use App\Element\Element;
use DateTimeImmutable;
final readonly class CreateScheduleAssignmentDto
{
/**
* @param list<string> $path
*/
public function __construct(
public Element $element,
public string $name,
public string $kind,
public array $path,
public DateTimeImmutable $scheduledDate,
public int $position,
) {}