add plan to scheduled node

This commit is contained in:
Yisroel Baum 2026-02-25 10:16:59 +02:00
parent fd0ee57149
commit 412a74e390
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
5 changed files with 15 additions and 0 deletions

View file

@ -2,11 +2,13 @@
namespace App\ScheduledNode;
use App\Plan\Plan;
use DateTimeImmutable;
class CreateScheduledNodeDto
{
public function __construct(
public DateTimeImmutable $date,
public Plan $plan,
) {}
}