package com.huhx0015.gw2at.model.responses.characters;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class Stats {
@SerializedName("id")
@Expose
private Integer id;
@SerializedName("attributes")
@Expose
private Attributes attributes;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Attributes getAttributes() {
return attributes;
}
public void setAttributes(Attributes attributes) {
this.attributes = attributes;
}
}