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.Common;
|
---|
7 |
|
---|
8 | namespace HeuristicLab.Services.Hive.Common.DataTransfer {
|
---|
9 | [DataContract]
|
---|
10 | public abstract class NamedHiveItem : HiveItem {
|
---|
11 | [DataMember]
|
---|
12 | public string Name { get; set; }
|
---|
13 | [DataMember]
|
---|
14 | public string Description { get; set; }
|
---|
15 |
|
---|
16 | protected NamedHiveItem() { }
|
---|
17 | protected NamedHiveItem(NamedHiveItem original, Cloner cloner) : base(original, cloner) {
|
---|
18 | this.Name = original.Name;
|
---|
19 | this.Description = original.Description;
|
---|
20 | }
|
---|
21 | }
|
---|
22 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.