diff options
Diffstat (limited to 'core/namespace/User/Entity.php')
-rw-r--r-- | core/namespace/User/Entity.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/core/namespace/User/Entity.php b/core/namespace/User/Entity.php new file mode 100644 index 0000000..fdfaf9e --- /dev/null +++ b/core/namespace/User/Entity.php @@ -0,0 +1,15 @@ +<?php +namespace User; + +class Entity extends \Entity { + protected $id = FALSE; + protected $slug = FALSE; + protected $username = FALSE; + protected $password = FALSE; + protected $fullname = FALSE; + protected $mailaddr = FALSE; + protected $body = FALSE; + protected $argv = FALSE; + protected $time_insert = FALSE; + protected $time_update = FALSE; +} |