21 lines
289 B
PHP
21 lines
289 B
PHP
<?php
|
|
|
|
namespace App\Set;
|
|
|
|
class Set
|
|
{
|
|
public function __construct(
|
|
private int $id,
|
|
private string $name,
|
|
) {}
|
|
|
|
public function getId(): int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getName(): string
|
|
{
|
|
return $this->name;
|
|
}
|
|
}
|