Files
BloomPatched/build/scripts/Targets/TargetDescriptionFiles/PhysicalInterface.php

13 lines
203 B
PHP
Raw Normal View History

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