aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace/ORM/Entities/Category.php
blob: e8c44960a03a302fbf346a686153b5a3d1fd1ed4 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
namespace ORM\Entities;
use ORM\Entity;

class Category extends Entity {
	protected $parent;
	protected $slug;
	protected $name;
	protected $body;
	protected $argv;
}