14 lines
187 B
Java
14 lines
187 B
Java
package dataStructures;
|
|
|
|
public class KittyPoll
|
|
{
|
|
public String choice;
|
|
public int votes;
|
|
|
|
public KittyPoll(String choice)
|
|
{
|
|
this.choice = choice;
|
|
votes = 0;
|
|
}
|
|
}
|