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

class Category extends Entity {
	protected $id     = FALSE;
	protected $parent = FALSE;
	protected $slug   = FALSE;
	protected $name   = FALSE;
	protected $body   = FALSE;
	protected $argv   = FALSE;
	protected $time_insert = FALSE;
	protected $time_update = FALSE;
}