WIP: Implement crm selections
This commit is contained in:
@@ -128,6 +128,9 @@ class Teamer implements TimestampableEntityInterface
|
||||
#[ORM\Column(length: 2, nullable: true)]
|
||||
private ?string $size = null;
|
||||
|
||||
#[ORM\Column(nullable: true)]
|
||||
private ?array $crmSelections = null;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->uuid = Uuid::v4();
|
||||
@@ -720,4 +723,16 @@ class Teamer implements TimestampableEntityInterface
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getCrmSelections(): ?array
|
||||
{
|
||||
return $this->crmSelections;
|
||||
}
|
||||
|
||||
public function setCrmSelections(?array $crmSelections): static
|
||||
{
|
||||
$this->crmSelections = $crmSelections;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user