This commit is contained in:
Björn Fromme
2023-07-08 16:21:05 +02:00
parent 305699b1ac
commit dc5b9a9238
17 changed files with 297 additions and 176 deletions
+33
View File
@@ -0,0 +1,33 @@
<?php
namespace App\BusProNet\Model;
class CrmAttributeGroup
{
private ?string $label = null;
private ?array $attributes = null;
public function getLabel(): ?string
{
return $this->label;
}
public function setLabel(?string $label): static
{
$this->label = $label;
return $this;
}
public function getAttributes(): ?array
{
return $this->attributes;
}
public function setAttributes(?array $attributes): static
{
$this->attributes = $attributes;
return $this;
}
}