34 lines
573 B
PHP
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;
|
|
}
|
|
}
|