blob: 7ebcee3f9ad615b999cfb0e5d869955847c48774 [file] [log] [blame]
<?php
class Category{
function __construct($id, $name){
$this->id=$id;
$this->name=$name;
}
function getId(){
return $this->id;
}
function getName(){
return $this->name;
}
}
?>