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:
338 bytes
|
Line | |
---|
1 | using System.Runtime.Serialization;
|
---|
2 |
|
---|
3 | namespace 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.