Last change
on this file since 3580 was
3011,
checked in by kgrading, 15 years ago
|
changed the complete DAL to LINQ 2 SQL (with the exception of the job streaming), did a lot of refactoring, Introduced DTOs (that are named DTOs for better understanding), added the spring.NET Interceptor, reintroduced transactions and cleaned up the whole JobResult thing and updated a part of the config merger (#830)
|
File size:
478 bytes
|
Rev | Line | |
---|
[3011] | 1 | using System;
|
---|
[1369] | 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() {
|
---|
[3011] | 14 | Plugins = new List<CachedHivePluginInfoDto>();
|
---|
[1596] | 15 | }
|
---|
| 16 |
|
---|
[1369] | 17 | [DataMember]
|
---|
[3011] | 18 | public List<CachedHivePluginInfoDto> Plugins { get; set; }
|
---|
[1369] | 19 | }
|
---|
| 20 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.