1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace LaravelUi5\OData\Vocabularies\Common\V1;
6:
7: /**
8: * Maps a property of the Semantic Object to a property of the annotated entity type or a sibling property of the annotated property or a constant value
9: */
10: final readonly class SemanticObjectMappingAbstract
11: {
12: public function __construct(
13: public readonly string $semanticObjectProperty,
14: ) {}
15: }
16: