Files
Nav 8ba29c258d TDF and TDF script changes (application changes pending):
- Added new `pad` element to TDFs
- Refactored `pin` and `signal` elements to accommodate new `pad` element
- Improved validation of signal-to-pad relation in TDF validation script
- Added key attribute to `variant` element
- Removed `package` attribute from `variant` element
2024-08-13 22:17:49 +01:00

15 lines
258 B
PHP

<?php
namespace Targets\TargetDescriptionFiles;
class Pad
{
public ?string $key = null;
public ?string $name = null;
public function __construct(?string $key, ?string $name)
{
$this->key = $key;
$this->name = $name;
}
}