summaryrefslogtreecommitdiff
path: root/client/Piztor/src/com/macaroon/piztor/Res.java
blob: 4cc98a9e6321a3e13be1e0063b109e8eeac21b96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package com.macaroon.piztor;

public class Res{
	int t;
	int s;
	Res(int type,int status){
		t = type;
		s = status;
	}
}