Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Calendar/3.3/Appointment/NewAppointmentEvent.cs @ 5511

Last change on this file since 5511 was 4105, checked in by cneumuel, 14 years ago

added HeuristicLab.Calendar (calendar GUI implementation from hive project) (#1107)

File size: 786 bytes
Line 
1
2
3using System;
4using System.Collections.Generic;
5using System.Text;
6
7namespace HeuristicLab.Calendar
8{
9    public class NewAppointmentEventArgs : EventArgs
10    {
11        public NewAppointmentEventArgs( string title, DateTime start, DateTime end )
12        {
13            m_Title = title;
14            m_StartDate = start;
15            m_EndDate = end;
16        }
17
18        private string m_Title;
19
20        public string Title
21        {
22            get { return m_Title; }
23        }
24
25        private DateTime m_StartDate;
26
27        public DateTime StartDate
28        {
29            get { return m_StartDate; }
30        }
31
32        private DateTime m_EndDate;
33
34        public DateTime EndDate
35        {
36            get { return m_EndDate; }
37        }
38    }
39}
Note: See TracBrowser for help on using the repository browser.