package dataStructures; public class KittyPoll { public String choice; public int votes; public KittyPoll(String choice) { this.choice = choice; votes = 0; } }