summaryrefslogtreecommitdiffstats
path: root/application/models/BootIso.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/models/BootIso.php')
-rw-r--r--application/models/BootIso.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/application/models/BootIso.php b/application/models/BootIso.php
index 8041fa2..e1c9bd8 100644
--- a/application/models/BootIso.php
+++ b/application/models/BootIso.php
@@ -14,9 +14,9 @@ class Application_Model_BootIso {
protected $_bootisoID;
protected $_title;
protected $_description;
- protected $_prebootID;
protected $_membershipID;
protected $_groupID;
+ protected $_typeID;
protected $_serialnumber;
protected $_created;
protected $_expires;
@@ -87,22 +87,22 @@ class Application_Model_BootIso {
$this->_title = $_title;
return $this;
}
- public function getPrebootID() {
- return $this->_prebootID;
+
+ public function getTypeID() {
+ return $this->_typeID;
}
- public function setPrebootID($_prebootID) {
- $this->_prebootID = $_prebootID;
- return $this;
+ public function setTypeID($_typeID) {
+ $this->_typeID = $_typeID;
+ return $this;
}
+
public function getSerialnumber() {
return $this->_serialnumber;
}
-
public function setSerialnumber($_serialnumber) {
$this->_serialnumber = $_serialnumber;
return $this;
}
-
public function getCreated() {
return $this->_created;
}