blob: 0c3a547f1f25b45d4001bd2a3f37e32eae5a96d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php
class User
{
private $_ID='';
private $_UserName='';
private $_Password='';
private $_EmailAddress='';
private $_LastLogon='';
public function getID(){ return $this->_ID; }
public function setID($value){ $this->_ID = $value; }
public function getUserName(){ return $this->_UserName; }
public function setUserName($value){ $this->_UserName = $value; }
public function getPassword(){ return $this->_Password; }
public function setPassword($value){ $this->_Password = $value; }
public function getEmailAddress(){ return $this->_EmailAddress; }
public function setEmailAddress($value){ $this->_EmailAddress = $value; }
public function getLastLogon(){ return $this->_LastLogon; }
public function setLastLogon($value){ $this->_LastLogon = $value; }
}
?>
|