Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive.New/HeuristicLab.Services.Hive.Common/3.4/DataTransfer/HiveItem.cs @ 5045

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

#1233 applied new cloning mechanism

File size: 589 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Runtime.Serialization;
6using HeuristicLab.Common;
7using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
8
9namespace HeuristicLab.Services.Hive.Common.DataTransfer {
10  [DataContract]
11  [Serializable]
12  public abstract class HiveItem : HiveItemBase {
13    [DataMember]
14    public Guid Id { get; set; }
15
16    public HiveItem() { }
17    protected HiveItem(HiveItem original, Cloner cloner) : base(original, cloner) {
18      this.Id = original.Id;
19    }
20  }
21}
Note: See TracBrowser for help on using the repository browser.