summaryrefslogtreecommitdiff
path: root/client/Piztor/src/com/macaroon/piztor/Res.java
blob: 98af108a085b692269cc511e1983575dd9cc37c3 (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;
	}
}