init plan entity

This commit is contained in:
Yisroel Baum 2026-02-23 10:40:52 +02:00
parent d1eb648b73
commit 957de13e71
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

21
app/Plan/Plan.php Normal file
View file

@ -0,0 +1,21 @@
<?php
namespace App\Plan;
class Plan
{
public function __construct(
private int $id,
private string $name,
) {}
public function getId(): int
{
return $this->id;
}
public function getName(): string
{
return $this->name;
}
}