Last change
on this file since 5955 was
5614,
checked in by ascheibe, 14 years ago
|
#1233
- added missing partial classes for dtos
- simplified dtos in Services.Hive.Common
|
File size:
281 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Runtime.Serialization;
|
---|
3 |
|
---|
4 | namespace 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.