Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Core/3.2/ConfigurationManager/AppointmentContainer.cs @ 3220

Last change on this file since 3220 was 3203, checked in by kgrading, 15 years ago

implemented the server on the client, using push & force push, added refresh buttons, added auto calender methods that traverse the tree... (#908)

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.