Last change
on this file since 5779 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
|
Rev | Line | |
---|
[5614] | 1 | using System.Runtime.Serialization;
|
---|
[4593] | 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; }
|
---|
[4629] | 10 |
|
---|
[4796] | 11 | protected NamedHiveItem() { }
|
---|
[5614] | 12 |
|
---|
[4593] | 13 | }
|
---|
| 14 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.