KatalogEintrag.php
Pfad: src/Domain/Abgleich/KatalogEintrag.php
Ext: php
Größe: 431 Bytes
Geändert: 2026-07-16 00:33:39+02
<?php
declare(strict_types=1);
namespace Demo\Domain\Abgleich;
/**
* Ein zu pruefender Katalog-Eintrag (Artefakt-Typ und kanonischer Bezeichner).
*/
final class KatalogEintrag
{
/**
* @param string $typ Artefakt-Typ.
* @param string $bezeichner Kanonischer Bezeichner.
*/
public function __construct(
public readonly string $typ,
public readonly string $bezeichner
) {
}
}