aboutsummaryrefslogtreecommitdiffstats
path: root/php/user.php
diff options
context:
space:
mode:
Diffstat (limited to 'php/user.php')
-rw-r--r--php/user.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/php/user.php b/php/user.php
new file mode 100644
index 0000000..1ef3083
--- /dev/null
+++ b/php/user.php
@@ -0,0 +1,10 @@
+<?php
+ class User
+ {
+ /*I don't think we need to abstract these away*/
+ public $user_id;
+ public $username;
+ public $email_address;
+ }
+
+?>