source:
trunk/sources/HeuristicLab.Hive.Contracts/ResponsePlugin.cs
@
1463
Last change on this file since 1463 was 1445, checked in by msteinbi, 16 years ago | |
---|---|
File size: 358 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Linq; |
4 | using System.Text; |
5 | using System.Runtime.Serialization; |
6 | using HeuristicLab.PluginInfrastructure; |
7 | |
8 | namespace 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.