package tap;
public class OutputLog {
public OutputLog() {
}
public OutputLog(String description, int count) {
this.description = description;
this.count = count;
}
public String description;
public int count;
}