Last change
on this file since 4695 was
4694,
checked in by fruehrli, 14 years ago
|
#1197
Administration methods updated
WinForm for administration added
Demo WebService added
|
File size:
545 bytes
|
Line | |
---|
1 | // Resource.cs
|
---|
2 |
|
---|
3 | using System.Runtime.Serialization;
|
---|
4 |
|
---|
5 | namespace HeuristicLab.Services.Authentication.DataTransfer {
|
---|
6 | public abstract class Resource {
|
---|
7 |
|
---|
8 | public System.Guid ResourceID { get; set; }
|
---|
9 |
|
---|
10 | public string Name { get; set; }
|
---|
11 |
|
---|
12 | public string Description { get; set; }
|
---|
13 |
|
---|
14 | public string ResourceType { get; set; }
|
---|
15 |
|
---|
16 | public string ResourceGroup { get; set; }
|
---|
17 |
|
---|
18 | public override string ToString() {
|
---|
19 | return (this.Name + "; Id= " + this.ResourceID + "; " + this.ResourceType);
|
---|
20 | }
|
---|
21 | }
|
---|
22 | }
|
---|
23 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.