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

28 lines
669 B
PHP
Raw Normal View History

<?php
namespace Targets\TargetDescriptionFiles;
require_once __DIR__ . "/Register.php";
class RegisterGroupReference
{
public ?string $key = null;
public ?string $name = null;
public ?string $registerGroupKey = null;
public ?int $offset = null;
public ?string $description = null;
public function __construct(
?string $key,
?string $name,
?string $registerGroupKey,
?int $offset,
?string $description
) {
$this->key = $key;
$this->name = $name;
$this->registerGroupKey = $registerGroupKey;
$this->offset = $offset;
$this->description = $description;
}
}