2024-02-09 23:30:47 +00:00
|
|
|
<?php
|
|
|
|
|
namespace Targets\TargetDescriptionFiles;
|
|
|
|
|
|
|
|
|
|
class Signal
|
|
|
|
|
{
|
2024-09-15 15:27:08 +01:00
|
|
|
public ?string $name = null;
|
2024-08-13 22:17:49 +01:00
|
|
|
public ?string $padKey = null;
|
2024-02-09 23:30:47 +00:00
|
|
|
public ?int $index = null;
|
|
|
|
|
public ?string $function = null;
|
|
|
|
|
public ?string $field = null;
|
|
|
|
|
|
|
|
|
|
public function __construct(
|
2024-09-15 15:27:08 +01:00
|
|
|
?string $name,
|
2024-08-13 22:17:49 +01:00
|
|
|
?string $padKey,
|
2024-02-09 23:30:47 +00:00
|
|
|
?int $index,
|
|
|
|
|
?string $function,
|
|
|
|
|
?string $field
|
|
|
|
|
) {
|
2024-09-15 15:27:08 +01:00
|
|
|
$this->name = $name;
|
2024-08-13 22:17:49 +01:00
|
|
|
$this->padKey = $padKey;
|
2024-02-09 23:30:47 +00:00
|
|
|
$this->index = $index;
|
|
|
|
|
$this->function = $function;
|
|
|
|
|
$this->field = $field;
|
|
|
|
|
}
|
|
|
|
|
}
|