<?PHP
class UserFileParamAttr
{
var $id;
var $filedb_id;
var $user_id;
var $owner;
var $allowread;
var $allowwrite;
function UserFileParamAttr($id, $filedb_id,
$user_id, $owner, $allowread, $allowwrite)
{
$this->id = $id;
$this->filedb_id = $filedb_id;
$this->user_id = $user_id;
$this->owner = $owner;
$this->allowread = $allowread;
$this->allowwrite = $allowwrite;
}
function setid($_id) { $this->id = $_id; }
function getid() { return $this->id; }
function setfiledb_id($_filedb_id) { $this->filedb_id = $_filedb_id; }
function getfiledb_id() { return $this->filedb_id; }
function setuser_id($_user_id) { $this->user_id = $_user_id; }
function getuser_id() { return $this->user_id; }
function setowner($_owner) { $this->owner = $_owner; }
function getowner() { return $this->owner; }
function setread($_allowread) { $this->allowread = $_allowread; }
function getread() { return $this->allowread; }
function setwrite($_allowwrite) { $this->allowwrite = $_allowwrite; }
function getwrite() { return $this->allowwrite; }
}
?>