Rabbi_Gerzi/backend/app/Set/Set.php
2026-07-02 17:10:23 +03:00

49 lines
887 B
PHP

<?php
namespace App\Set;
class Set
{
public function __construct(
private int $id,
private string $name,
private string $description,
private string $iconImageUrl,
) {
}
public function getId(): int
{
return $this->id;
}
public function getName(): string
{
return $this->name;
}
public function setName(string $name): void
{
$this->name = $name;
}
public function getDescription(): string
{
return $this->description;
}
public function setDescription(string $description): void
{
$this->description = $description;
}
public function getIconImageUrl(): string
{
return $this->iconImageUrl;
}
public function setIconImageUrl(string $iconImageUrl): void
{
$this->iconImageUrl = $iconImageUrl;
}
}