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