Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ClientManagement/HeuristicLab.Services.Authentication/HeuristicLab.Services.Authentication.DataTransfer/Resource.cs @ 4694

Last change on this file since 4694 was 4694, checked in by fruehrli, 13 years ago

#1197
Administration methods updated
WinForm for administration added
Demo WebService added

File size: 545 bytes
Line 
1// Resource.cs
2
3using System.Runtime.Serialization;
4
5namespace 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.