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

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