13 lines
233 B
PHP
13 lines
233 B
PHP
<?php
|
|
namespace Bloom\BuildScripts\TargetDescriptionFiles;
|
|
|
|
require_once __DIR__ . "/Property.php";
|
|
|
|
class PropertyGroup
|
|
{
|
|
public ?string $name = null;
|
|
|
|
/** @var Property[] */
|
|
public array $propertiesMappedByName = [];
|
|
}
|