blob: 96ff23382b0eda1f6097f94d1bddcb731dc3b2eb (
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 = FALSE;
protected $slug = FALSE;
protected $name = FALSE;
protected $body = FALSE;
protected $argv = FALSE;
}
|