Last change
on this file since 5048 was
4105,
checked in by cneumuel, 14 years ago
|
added HeuristicLab.Calendar (calendar GUI implementation from hive project) (#1107)
|
File size:
975 bytes
|
Line | |
---|
1 |
|
---|
2 |
|
---|
3 | using System;
|
---|
4 | using System.Collections.Generic;
|
---|
5 | using System.Text;
|
---|
6 |
|
---|
7 | namespace HeuristicLab.Calendar
|
---|
8 | {
|
---|
9 | public class ResolveAppointmentsEventArgs : EventArgs
|
---|
10 | {
|
---|
11 | public ResolveAppointmentsEventArgs(DateTime start, DateTime end)
|
---|
12 | {
|
---|
13 | m_StartDate = start;
|
---|
14 | m_EndDate = end;
|
---|
15 | m_Appointments = new List<Appointment>();
|
---|
16 | }
|
---|
17 |
|
---|
18 | private DateTime m_StartDate;
|
---|
19 |
|
---|
20 | public DateTime StartDate
|
---|
21 | {
|
---|
22 | get { return m_StartDate; }
|
---|
23 | set { m_StartDate = value; }
|
---|
24 | }
|
---|
25 |
|
---|
26 | private DateTime m_EndDate;
|
---|
27 |
|
---|
28 | public DateTime EndDate
|
---|
29 | {
|
---|
30 | get { return m_EndDate; }
|
---|
31 | set { m_EndDate = value; }
|
---|
32 | }
|
---|
33 |
|
---|
34 | private List<Appointment> m_Appointments;
|
---|
35 |
|
---|
36 | public List<Appointment> Appointments
|
---|
37 | {
|
---|
38 | get { return m_Appointments; }
|
---|
39 | set { m_Appointments = value; }
|
---|
40 | }
|
---|
41 | }
|
---|
42 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.