13 lines
203 B
PHP
13 lines
203 B
PHP
<?php
|
|
namespace Targets\TargetDescriptionFiles;
|
|
|
|
class PhysicalInterface
|
|
{
|
|
public ?string $value = null;
|
|
|
|
public function __construct(?string $value)
|
|
{
|
|
$this->value = $value;
|
|
}
|
|
}
|