aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace/ORM/Entities/Page.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/namespace/ORM/Entities/Page.php')
-rw-r--r--core/namespace/ORM/Entities/Page.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/core/namespace/ORM/Entities/Page.php b/core/namespace/ORM/Entities/Page.php
new file mode 100644
index 0000000..94e5ff5
--- /dev/null
+++ b/core/namespace/ORM/Entities/Page.php
@@ -0,0 +1,14 @@
+<?php
+namespace ORM\Entities;
+use ORM\Entity;
+
+class Page extends Entity {
+ protected $id = FALSE;
+ protected $user = FALSE;
+ protected $slug = FALSE;
+ protected $name = FALSE;
+ protected $body = FALSE;
+ protected $argv = FALSE;
+ protected $time_insert = FALSE;
+ protected $time_update = FALSE;
+}