Files
VisualSapfor/src/Common/Utils/IntegerPairJson.java
02090095 c5cd8113c0 ++
добавление учета пробелов в сравнение
2025-07-13 19:33:57 +03:00

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 IntegerPairJson(int key_in, int value_in) {
key = key_in;
value = value_in;
}
public IntegerPairJson() {
}
public int getKey() {
return key;
}
public int getValue() {
return value;
}
}