Goal-Calibration/app/Plan/UseCases/CreatePlanRequest.php

14 lines
263 B
PHP

<?php
namespace App\Plan\UseCases;
class CreatePlanRequest
{
public function __construct(
public ?int $userId,
public ?int $textId,
public ?string $name,
public ?string $dateStart,
public ?string $dateEnd,
) {}
}