package com.huhx0015.gw2at.model.responses.characters;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class WvwAbility {
@SerializedName("id")
@Expose
private Integer id;
@SerializedName("rank")
@Expose
private Integer rank;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getRank() {
return rank;
}
public void setRank(Integer rank) {
this.rank = rank;
}
}