using System; using System.Collections.Generic; using System.Text; namespace HeuristicLab.Calendar { public class ResolveAppointmentsEventArgs : EventArgs { public ResolveAppointmentsEventArgs(DateTime start, DateTime end) { m_StartDate = start; m_EndDate = end; m_Appointments = new List(); } private DateTime m_StartDate; public DateTime StartDate { get { return m_StartDate; } set { m_StartDate = value; } } private DateTime m_EndDate; public DateTime EndDate { get { return m_EndDate; } set { m_EndDate = value; } } private List m_Appointments; public List Appointments { get { return m_Appointments; } set { m_Appointments = value; } } } }