2024-02-09 23:30:47 +00:00
|
|
|
<?php
|
|
|
|
|
namespace Targets\TargetDescriptionFiles;
|
|
|
|
|
|
|
|
|
|
class Variant
|
|
|
|
|
{
|
2024-08-13 22:17:49 +01:00
|
|
|
public ?string $key = null;
|
2024-02-09 23:30:47 +00:00
|
|
|
public ?string $name = null;
|
|
|
|
|
public ?string $pinoutKey = null;
|
|
|
|
|
|
2024-08-13 22:17:49 +01:00
|
|
|
public function __construct(?string $key, ?string $name, ?string $pinoutKey)
|
2024-02-09 23:30:47 +00:00
|
|
|
{
|
2024-08-13 22:17:49 +01:00
|
|
|
$this->key = $key;
|
2024-02-09 23:30:47 +00:00
|
|
|
$this->name = $name;
|
|
|
|
|
$this->pinoutKey = $pinoutKey;
|
|
|
|
|
}
|
|
|
|
|
}
|