Rabbi_Gerzi/backend/app/Set/CreateSetDto.php

13 lines
199 B
PHP

<?php
namespace App\Set;
class CreateSetDto
{
public function __construct(
public string $name,
public string $description,
public string $iconImageUrl,
) {
}
}