15 lines
254 B
Java
15 lines
254 B
Java
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;
|
|
}
|
|
} |