|
|
@@ -55,6 +55,9 @@ class PublicEvent
|
|
|
#[ORM\Column]
|
|
|
private string $name;
|
|
|
|
|
|
+ #[ORM\Column]
|
|
|
+ private string $structureName;
|
|
|
+
|
|
|
#[ORM\Column(type: 'string')]
|
|
|
private ?string $description;
|
|
|
|
|
|
@@ -467,4 +470,18 @@ class PublicEvent
|
|
|
|
|
|
return $this;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ public function getStructureName()
|
|
|
+ {
|
|
|
+ return $this->structureName;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ public function setStructureName($structureName)
|
|
|
+ {
|
|
|
+ $this->structureName = $structureName;
|
|
|
+
|
|
|
+ return $this;
|
|
|
+ }
|
|
|
}
|