Files
myep-team/src/BusProNet/Model/CrmAttributeGroup.php
T
2025-08-21 14:20:43 +02:00

34 lines
573 B
PHP

<?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;
}
}