Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Common/3.4/DataTransfer/HiveItem.cs @ 6267

Last change on this file since 6267 was 5614, checked in by ascheibe, 13 years ago

#1233

  • added missing partial classes for dtos
  • simplified dtos in Services.Hive.Common
File size: 281 bytes
Line 
1using System;
2using System.Runtime.Serialization;
3
4namespace HeuristicLab.Services.Hive.Common.DataTransfer {
5  [DataContract]
6  [Serializable]
7  public abstract class HiveItem  {
8    [DataMember]
9    public Guid Id { get; set; }
10
11    public HiveItem() { }
12
13  }
14}
Note: See TracBrowser for help on using the repository browser.