Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 1589 was 1589, checked in by kgrading, 15 years ago

refactoring (#547)

File size: 366 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<CachedHivePluginInfo> Plugins { get; set; }
14  }
15}
Note: See TracBrowser for help on using the repository browser.