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

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