Free cookie consent management tool by TermsFeed Policy Generator

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

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

Changed interface for plugin transfer (#531)

File size: 358 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    [DataMember]
13    public List<CachedPlugin> Plugins { get; set; }
14  }
15}
Note: See TracBrowser for help on using the repository browser.