Free cookie consent management tool by TermsFeed Policy Generator

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

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

Implemented SendPlugins method (#531)

File size: 457 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  public class ResponsePlugin : Response {
12    public ResponsePlugin() {
13      Plugins = new List<CachedHivePluginInfo>();
14    }
15
16    [DataMember]
17    public List<CachedHivePluginInfo> Plugins { get; set; }
18  }
19}
Note: See TracBrowser for help on using the repository browser.