11 lines
166 B
PHP
11 lines
166 B
PHP
<?php
|
|
|
|
namespace App\Set;
|
|
|
|
final readonly class CreateSetLevelDto
|
|
{
|
|
public function __construct(
|
|
public Set $set,
|
|
public string $kind,
|
|
) {}
|
|
}
|