Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Contracts/ResponseHB.cs @ 783

Last change on this file since 783 was 783, checked in by msteinbi, 15 years ago

First version of a dummy implementation of the ClientCommunicator (#371)

File size: 443 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Runtime.Serialization;
6
7namespace HeuristicLab.Hive.Contracts {
8
9
10  /// <summary>
11  /// Response Heartbeat class
12  /// Return value to hearbeats sent by the client
13  /// </summary>
14  [DataContract]
15  public class ResponseHB : Response {
16    [DataMember]
17    public List<MessageContainer> ActionRequest { get; set; }
18  }
19}
Note: See TracBrowser for help on using the repository browser.