| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace ModulesGarden\Servers\ProxmoxCloudVps\Core\RegisterManager;
- /**
- * Description of Entity
- *
- * @author Rafał Ossowski <rafal.os@modulesgarden.com>
- */
- class Entity
- {
- protected $key;
- protected $data;
-
- public function setData($data)
- {
- $this->data = $data;
-
- return $this;
- }
-
- public function getData()
- {
- return $this->data;
- }
-
- public function setKey($key)
- {
- $this->key = $key;
-
- return $this;
- }
-
- public function getKey()
- {
- return $this->key;
- }
- }
|