Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 1532 was 1530, checked in by gkronber, 16 years ago

Moved source files of plugins Hive ... Visualization.Test into version-specific sub-folders. #576

File size: 358 bytes
RevLine 
[1369]1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Runtime.Serialization;
[1445]6using HeuristicLab.PluginInfrastructure;
[1369]7
8namespace HeuristicLab.Hive.Contracts {
9
10  [DataContract]
11  public class ResponsePlugin : Response {
12    [DataMember]
[1445]13    public List<CachedPlugin> Plugins { get; set; }
[1369]14  }
15}
Note: See TracBrowser for help on using the repository browser.