summaryrefslogtreecommitdiff
path: root/client/Piztor/src/com/macaroon/piztor/ReqUserInfo.java
diff options
context:
space:
mode:
Diffstat (limited to 'client/Piztor/src/com/macaroon/piztor/ReqUserInfo.java')
-rw-r--r--client/Piztor/src/com/macaroon/piztor/ReqUserInfo.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/client/Piztor/src/com/macaroon/piztor/ReqUserInfo.java b/client/Piztor/src/com/macaroon/piztor/ReqUserInfo.java
new file mode 100644
index 0000000..89c20ee
--- /dev/null
+++ b/client/Piztor/src/com/macaroon/piztor/ReqUserInfo.java
@@ -0,0 +1,15 @@
+package com.macaroon.piztor;
+
+//--------------------------------------//
+// Ask user info //
+//--------------------------------------//
+
+public class ReqUserInfo extends Req{
+ int uid; //user id
+
+
+ ReqUserInfo(String token,String name,int id,long time,long alive){
+ super(3,token,name,time,alive); //for type 3
+ uid = id;
+ }
+} \ No newline at end of file