package com.eyecreate.miceandmystics.miceandmystics.model; import io.realm.RealmList; import io.realm.RealmObject; public class Campaign extends RealmObject { private RealmList currentCharacters; private RealmList partyStoryAchievments; public RealmList getCurrentCharacters() { return currentCharacters; } public void setCurrentCharacters(RealmList currentCharacters) { this.currentCharacters = currentCharacters; } public RealmList getPartyStoryAchievments() { return partyStoryAchievments; } public void setPartyStoryAchievments(RealmList partyStoryAchievments) { this.partyStoryAchievments = partyStoryAchievments; } }