package com.keylesspalace.tusky.entity; import com.keylesspalace.tusky.Status; import java.util.List; public class StatusContext { List ancestors; public List getAncestors() { return ancestors; } public void setAncestors(List ancestors) { this.ancestors = ancestors; } public List getDescendants() { return descendants; } public void setDescendants(List descendants) { this.descendants = descendants; } List descendants; }