Free cookie consent management tool by TermsFeed Policy Generator

source: branches/UserManagement/HeuristicLab.Services.Authentication.DataTransfer/Application.cs @ 4741

Last change on this file since 4741 was 4740, checked in by jwolfing, 13 years ago

#1196 Changed DataTransfer Structure factoring in abstract class. Added new TestClient2 only to test the new method. All other comment lines, are lines they should be changed to the new structure.

File size: 805 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Runtime.Serialization;
6
7namespace HeuristicLab.Services.Authentication.DataTransfer
8{
9  [DataContract]
10  public class Application : NamedAuthItem {
11    //[DataMember]
12    //public string LoweredApplicationName { get; set; }
13    [DataMember]
14    public string Description { get; set; }
15  }
16    //[DataContract]
17    //public class Application : NamedAuthItem {
18    //    [DataMember]
19    //    public Guid ApplicationId { get; set; }
20    //    [DataMember]
21    //    public string ApplicationName { get; set; }
22    //    [DataMember]
23    //    public string LoweredApplicationName { get; set; }
24    //    [DataMember]
25    //    public string Description { get; set; }
26    //}
27}
Note: See TracBrowser for help on using the repository browser.