21 lines
418 B
Java
21 lines
418 B
Java
|
|
package Common.Utils;
|
||
|
|
import com.google.gson.annotations.Expose;
|
||
|
|
public class IntegerPairJson {
|
||
|
|
@Expose
|
||
|
|
public int key;
|
||
|
|
@Expose
|
||
|
|
public int value;
|
||
|
|
public int getKey() {
|
||
|
|
return key;
|
||
|
|
}
|
||
|
|
public int getValue() {
|
||
|
|
return value;
|
||
|
|
}
|
||
|
|
public IntegerPairJson(int key_in, int value_in) {
|
||
|
|
key = key_in;
|
||
|
|
value = value_in;
|
||
|
|
}
|
||
|
|
public IntegerPairJson() {
|
||
|
|
}
|
||
|
|
}
|