Goal-Calibration/app/Plan/UseCases/CreatePlanRequest.php
2026-02-23 10:58:37 +02:00

11 lines
164 B
PHP

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