15 lines
267 B
PHP
15 lines
267 B
PHP
<?php
|
|
namespace Targets\TargetDescriptionFiles;
|
|
|
|
class Property
|
|
{
|
|
public ?string $key = null;
|
|
public ?string $value = null;
|
|
|
|
public function __construct(?string $key, ?string $value)
|
|
{
|
|
$this->key = $key;
|
|
$this->value = $value;
|
|
}
|
|
}
|