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:
457 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Text;
|
---|
4 |
|
---|
5 | namespace HeuristicLab.Calendar
|
---|
6 | {
|
---|
7 | public class AppointmentEventArgs : EventArgs
|
---|
8 | {
|
---|
9 | public AppointmentEventArgs( Appointment appointment )
|
---|
10 | {
|
---|
11 | m_Appointment = appointment;
|
---|
12 | }
|
---|
13 |
|
---|
14 | private Appointment m_Appointment;
|
---|
15 |
|
---|
16 | public Appointment Appointment
|
---|
17 | {
|
---|
18 | get { return m_Appointment; }
|
---|
19 | }
|
---|
20 | }
|
---|
21 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.