. */ namespace SP\Domain\Client\Models; use SP\Domain\Common\Models\ItemWithIdAndNameModel; use SP\Domain\Common\Models\Model; /** * Class Client */ class Client extends Model implements ItemWithIdAndNameModel { public const TABLE = 'Client'; protected ?int $isGlobal = null; protected ?int $id = null; protected ?string $name = null; protected ?string $description = null; protected ?string $hash = null; public function getId(): ?int { return $this->id; } public function getName(): ?string { return $this->name; } public function getDescription(): ?string { return $this->description; } public function getHash(): ?string { return $this->hash; } public function getIsGlobal(): ?int { return $this->isGlobal; } }