summaryrefslogtreecommitdiff
path: root/client/Piztor/src/com/macaroon/piztor/ResLogin.java
blob: e2f138c5ace990d83489c3a8d4f32198e6ad68a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.macaroon.piztor;


//--------------------------------------//
//	         Respond to login			//
//--------------------------------------//

public class ResLogin extends Res{
	String t;	//user token
	int uid;	//userid
	
	ResLogin(int id,String token,int status){
		super(0,status);	//for type 0
		t = token;
		uid = id;
	}
}