Last change
on this file since 2498 was
1939,
checked in by svonolfe, 16 years ago
|
Large amounts of data are now transferred streamed (fixed ticket #660)
|
File size:
475 bytes
|
Rev | Line | |
---|
[1369] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using System.Runtime.Serialization;
|
---|
[1445] | 6 | using HeuristicLab.PluginInfrastructure;
|
---|
[1369] | 7 |
|
---|
| 8 | namespace HeuristicLab.Hive.Contracts {
|
---|
| 9 |
|
---|
| 10 | [DataContract]
|
---|
[1939] | 11 | [Serializable]
|
---|
[1369] | 12 | public class ResponsePlugin : Response {
|
---|
[1596] | 13 | public ResponsePlugin() {
|
---|
| 14 | Plugins = new List<CachedHivePluginInfo>();
|
---|
| 15 | }
|
---|
| 16 |
|
---|
[1369] | 17 | [DataMember]
|
---|
[1589] | 18 | public List<CachedHivePluginInfo> Plugins { get; set; }
|
---|
[1369] | 19 | }
|
---|
| 20 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.