Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/HeuristicLab.Services.Hive.Common/3.4/DataTransfer/NamedHiveItem.cs @ 5046

Last change on this file since 5046 was 4796, checked in by cneumuel, 14 years ago

#1233 applied new cloning mechanism

File size: 638 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Runtime.Serialization;
6using HeuristicLab.Common;
7
8namespace 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.