<?PHP
class Acctype
{
var $id;
var $acctype;
var $totalsize;
var $filemaxsize;
var $charges;
var $status;
function Acctype($_id, $_acctype, $_totalsize, $_filemaxsize,
$_charges, $_status)
{
$this->id = $_id;
$this->acctype = $_acctype;
$this->totalsize = $_totalsize;
$this->filemaxsize = $_filemaxsize;
$this->charges = $_charges;
$this->status = $_status;
}
function setid($_id) { $this->id = $_id; }
function getid() { return $this->id; }
function setacctype($_acctype) { $this->acctype = $_acctype; }
function getacctype() { return $this->acctype; }
function settotalsize($_totalsize) { $this->totalsize = $_totalsize; }
function gettotalsize() { return $this->totalsize; }
function setfilemaxsize($_filemaxsize) { $this->filemaxsize = $_filemaxsize; }
function getfilemaxsize() { return $this->filemaxsize; }
function setcharges($_charges) { $this->charges = $_charges; }
function getcharges() { return $this->charges; }
function setstatus($_status) { $this->status = $_status; }
function getstatus() { return $this->status; }
}
?>