Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive 3.3/HeuristicLab.Hive.Client.Core/3.2/ConfigurationManager/AppointmentContainer.cs @ 4060

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

created folders, copied Hive.Server.Core and Hive.Client.Core (#1091)

File size: 479 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using Calendar;
6
7namespace HeuristicLab.Hive.Client.Core.ConfigurationManager {
8  public class AppointmentContainer {
9    public DateTime Updated { get; set; }
10    public List<Appointment> Appointments { get; set; }
11    public bool IsLocal { get; set; }
12
13    public AppointmentContainer() {
14      Appointments = new List<Appointment>();
15      IsLocal = false;
16    }
17  }
18}
Note: See TracBrowser for help on using the repository browser.