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

class Post extends Entity {
	protected $user;
	protected $category;
	protected $slug;
	protected $name;
	protected $body;
	protected $argv;
}