20 lines
367 B
PHP
20 lines
367 B
PHP
<?php
|
|
|
|
namespace App\BusProNet\Model;
|
|
|
|
use Symfony\Component\Serializer\Attribute\Groups;
|
|
|
|
class CrmSelection
|
|
{
|
|
#[Groups(['api:single'])]
|
|
public ?int $id = null;
|
|
|
|
#[Groups(['api:single'])]
|
|
public ?string $label = null;
|
|
|
|
#[Groups(['api:single'])]
|
|
public bool $mutable = false;
|
|
|
|
#[Groups(['api:single'])]
|
|
public bool $selected = false;
|
|
} |