package com.snowcattle.game.common.util;
public class IntStringPair {
private int key;
private String value;
public IntStringPair(int key,String value){
this.key = key;
this.value = value;
}
public int getKey() {
return key;
}
public void setKey(int key) {
this.key = key;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}