21 lines
369 B
PHP
21 lines
369 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace DorfJetzt;
|
||
|
|
||
|
class State
|
||
|
{
|
||
|
public string $description;
|
||
|
public string $svg_name;
|
||
|
public string $color;
|
||
|
|
||
|
public function __construct(string $description, string $svg_name, string $color)
|
||
|
{
|
||
|
$this->description = $description;
|
||
|
$this->svg_name = $svg_name;
|
||
|
$this->color = $color;
|
||
|
}
|
||
|
|
||
|
}
|