package dungeonmania.response.models;
public final class ItemResponse {
private final String id;
Copyright By PowCoder代写 加微信 powcoder
private final String type;
public ItemResponse(String id, String type) {
this.id = id;
this.type = type;
public final String getType() {
return type;
public final String getId() {
return id;
程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com