Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Contracts/ResponseJob.cs @ 780

Last change on this file since 780 was 780, checked in by msteinbi, 16 years ago

New methods defined in IClientCommunicator (new response classes and HeartBeatData class) (#351)

File size: 486 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Hive.Contracts.BusinessObjects;
6using System.Runtime.Serialization;
7
8namespace HeuristicLab.Hive.Contracts {
9
10  /// <summary>
11  /// Response Job class
12  /// If a client pulls a Job from the server he gets a ResponseJob as answer
13  /// </summary>
14  [DataContract]
15  public class ResponseJob : Response {
16    [DataMember]
17    public Job Job { get; set; }
18  }
19}
Note: See TracBrowser for help on using the repository browser.