package com.eyecreate.miceandmystics.miceandmystics.model; import io.realm.RealmObject; import io.realm.annotations.PrimaryKey; public class Ability extends RealmObject { @PrimaryKey private String abilityName; public String getAbilityName() { return abilityName; } public void setAbilityName(String abilityName) { this.abilityName = abilityName; } }