package dataStructures; public class KittyChannel { public String uniqueID; public boolean mature; public KittyChannel(String uniqueID, boolean mature) { //super(uniqueID); this.uniqueID = uniqueID; this.mature = false; } }