Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Contracts/3.2/ResponsePlugin.cs @ 2808

Last change on this file since 2808 was 1939, checked in by svonolfe, 15 years ago

Large amounts of data are now transferred streamed (fixed ticket #660)

File size: 475 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Runtime.Serialization;
6using HeuristicLab.PluginInfrastructure;
7
8namespace HeuristicLab.Hive.Contracts {
9
10  [DataContract]
11  [Serializable]
12  public class ResponsePlugin : Response {
13    public ResponsePlugin() {
14      Plugins = new List<CachedHivePluginInfo>();
15    }
16
17    [DataMember]
18    public List<CachedHivePluginInfo> Plugins { get; set; }
19  }
20}
Note: See TracBrowser for help on using the repository browser.