Added alternative flag to Signal element in TDFs

This commit is contained in:
Nav
2024-10-04 23:45:16 +01:00
parent 876d402baa
commit d906f2f426
198 changed files with 10442 additions and 10410 deletions

View File

@@ -5,6 +5,7 @@ class Signal
{
public ?string $name = null;
public ?string $padKey = null;
public ?bool $alternative = null;
public ?int $index = null;
public ?string $function = null;
public ?string $field = null;
@@ -12,12 +13,14 @@ class Signal
public function __construct(
?string $name,
?string $padKey,
?bool $alternative,
?int $index,
?string $function,
?string $field
) {
$this->name = $name;
$this->padKey = $padKey;
$this->alternative = $alternative;
$this->index = $index;
$this->function = $function;
$this->field = $field;