/** * */ package org.ryu22e.nico2cal.service; import java.util.Date; /** * @author ryu22e * */ public final class NicoliveCondition { /** * */ private Date startDate; /** * */ private Date endDate; /** * @return the startDate */ public Date getStartDate() { return startDate; } /** * @param startDate the startDate to set */ public void setStartDate(Date startDate) { this.startDate = startDate; } /** * @return the endDate */ public Date getEndDate() { return endDate; } /** * @param endDate the endDate to set */ public void setEndDate(Date endDate) { this.endDate = endDate; } }