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

class Post extends Entity {
	protected $id       = FALSE;
	protected $user     = FALSE;
	protected $category = FALSE;
	protected $slug     = FALSE;
	protected $name     = FALSE;
	protected $body     = FALSE;
	protected $argv     = FALSE;
	protected $time_insert = FALSE;
	protected $time_update = FALSE;
}