Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1233

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