dto for passing to create method of text repo

This commit is contained in:
Yisroel Baum 2026-02-19 21:00:46 +02:00
parent a95a8838f6
commit 0998c70160
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

View file

@ -0,0 +1,10 @@
<?php
namespace App\Text;
class CreateTextDto
{
public function __construct(
public string $name,
) {}
}