Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Contracts/3.2/ResponseCalendar.cs @ 3494

Last change on this file since 3494 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: 423 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Runtime.Serialization;
6using HeuristicLab.Hive.Contracts.BusinessObjects;
7
8namespace HeuristicLab.Hive.Contracts {
9  public class ResponseCalendar: Response {
10    [DataMember]
11    public bool ForceFetch { get; set; }
12    [DataMember]
13    public IEnumerable<AppointmentDto> Appointments { get; set; }
14  }
15}
Note: See TracBrowser for help on using the repository browser.