add set edits

This commit is contained in:
Yisroel Baum 2026-07-02 17:10:23 +03:00
parent f8e1ef1397
commit 53d4120e83
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
8 changed files with 245 additions and 0 deletions

View file

@ -22,13 +22,28 @@ class Set
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;
}
}