Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Calendar/3.3/Appointment/iAppointment.cs @ 4333

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

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

File size: 346 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace HeuristicLab.Calendar
6{
7  interface iAppointment
8  {
9    int AppointmentId { get; set; }
10    DateTime StartDate { get; set; }
11    DateTime EndDate { get; set; }
12    string Subject { get; set; }
13    string Location { get; set; }
14    string Note { get; set; }
15  }
16}
Note: See TracBrowser for help on using the repository browser.