package com.huhx0015.gw2at.model.responses.account;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class AccountMaterialsResponse {
@SerializedName("id")
@Expose
private Integer id;
@SerializedName("category")
@Expose
private Integer category;
@SerializedName("count")
@Expose
private Integer count;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getCategory() {
return category;
}
public void setCategory(Integer category) {
this.category = category;
}
public Integer getCount() {
return count;
}
public void setCount(Integer count) {
this.count = count;
}
}