aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace/ORM/Entities/Category.php
blob: cf3ca5f726f0001cc106f59e6b3533ebea1683c7 (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 = FALSE;
	protected $slug   = FALSE;
	protected $name   = FALSE;
	protected $body   = FALSE;
	protected $argv   = FALSE;
}