Массивы в json

This commit is contained in:
2025-05-06 16:26:47 +03:00
parent b46f86bebb
commit 6e0956e3e5
9 changed files with 114 additions and 53 deletions

View File

@@ -0,0 +1,20 @@
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() {
}
}