summaryrefslogtreecommitdiff
path: root/client/Piztor/src/com/macaroon/piztor/ReqUserInfo.java
blob: 89c20ee3e445405a0d7cd2ef45009d10a773a224 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
	}
}