diff options
Diffstat (limited to 'admin/WebConsole3/backend/src/Opengnsys/ServerBundle/Entity/Netboot.php')
-rw-r--r-- | admin/WebConsole3/backend/src/Opengnsys/ServerBundle/Entity/Netboot.php | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/admin/WebConsole3/backend/src/Opengnsys/ServerBundle/Entity/Netboot.php b/admin/WebConsole3/backend/src/Opengnsys/ServerBundle/Entity/Netboot.php index 14a87ced..7befb73a 100644 --- a/admin/WebConsole3/backend/src/Opengnsys/ServerBundle/Entity/Netboot.php +++ b/admin/WebConsole3/backend/src/Opengnsys/ServerBundle/Entity/Netboot.php @@ -24,6 +24,11 @@ class Netboot extends BaseEntity private $template; /** + * @var string|null + */ + private $type; + + /** * @var integer */ private $id; @@ -110,4 +115,28 @@ class Netboot extends BaseEntity { return $this->id; } + + /** + * Set type. + * + * @param string|null $type + * + * @return Netboot + */ + public function setType($type = null) + { + $this->type = $type; + + return $this; + } + + /** + * Get type. + * + * @return string|null + */ + public function getType() + { + return $this->type; + } } |