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 | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Runtime.Serialization;
|
---|
6 | using HeuristicLab.Hive.Contracts.BusinessObjects;
|
---|
7 |
|
---|
8 | namespace 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.