diff options
Diffstat (limited to 'core/namespace/ORM/Entities/Post.php')
-rw-r--r-- | core/namespace/ORM/Entities/Post.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/core/namespace/ORM/Entities/Post.php b/core/namespace/ORM/Entities/Post.php new file mode 100644 index 0000000..e6bff36 --- /dev/null +++ b/core/namespace/ORM/Entities/Post.php @@ -0,0 +1,14 @@ +<?php +namespace ORM\Entities; +use ORM\Entity; + +class Post 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; +} |