summaryrefslogtreecommitdiffstats
path: root/application/models/PreBoot.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/models/PreBoot.php')
-rw-r--r--application/models/PreBoot.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/application/models/PreBoot.php b/application/models/PreBoot.php
index 8381c84..61cdf93 100644
--- a/application/models/PreBoot.php
+++ b/application/models/PreBoot.php
@@ -15,6 +15,8 @@ class Application_Model_PreBoot {
protected $_title;
protected $_membershipID;
protected $_groupID;
+ protected $_typeID;
+ protected $_serialnumber;
protected $_source;
protected $_created;
protected $_description;
@@ -79,6 +81,21 @@ class Application_Model_PreBoot {
$this->_groupID = $_groupID;
return $this;
}
+ public function getTypeID() {
+ return $this->_typeID;
+ }
+
+ 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 getTitle() {
return $this->_title;
}