2024-02-09 23:30:47 +00:00
|
|
|
<?php
|
|
|
|
|
namespace Targets\TargetDescriptionFiles;
|
|
|
|
|
|
|
|
|
|
class PhysicalInterface
|
|
|
|
|
{
|
2024-07-06 01:33:19 +01:00
|
|
|
public ?string $value = null;
|
2024-02-09 23:30:47 +00:00
|
|
|
|
2024-07-06 01:33:19 +01:00
|
|
|
public function __construct(?string $value)
|
2024-02-09 23:30:47 +00:00
|
|
|
{
|
2024-07-06 01:33:19 +01:00
|
|
|
$this->value = $value;
|
2024-02-09 23:30:47 +00:00
|
|
|
}
|
|
|
|
|
}
|