Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/08/11 14:39:29 (13 years ago)
Author:
mjesner
Message:

#1196

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/UserManagement/HeuristicLab.Services.Authentication.DataTransfer/Role.cs

    r4979 r5257  
    1 using System;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     4 *
     5 * This file is part of HeuristicLab.
     6 *
     7 * HeuristicLab is free software: you can redistribute it and/or modify
     8 * it under the terms of the GNU General Public License as published by
     9 * the Free Software Foundation, either version 3 of the License, or
     10 * (at your option) any later version.
     11 *
     12 * HeuristicLab is distributed in the hope that it will be useful,
     13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15 * GNU General Public License for more details.
     16 *
     17 * You should have received a copy of the GNU General Public License
     18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
     19 */
     20#endregion
     21using System;
    222using System.Collections.Generic;
    323using System.Linq;
     
    525using System.Runtime.Serialization;
    626
    7 namespace HeuristicLab.Services.Authentication.DataTransfer
    8 {
     27namespace HeuristicLab.Services.Authentication.DataTransfer {
     28
    929  [DataContract]
    10   public class Role : NamedAuthenticationItem {
     30  public class Role : AuthenticationItem {
    1131
    12       public Role()
    13       {
    14           Name = "";
    15       }
     32    public Role() {
     33      ApplicationId = Guid.Empty;
     34    }
    1635
    1736    [DataMember]
    1837    public Guid ApplicationId { get; set; }
    19     //[DataMember]
    20     //public string LoweredRoleName { get; set; } // !!! REMOVE
    21     [DataMember]
    22     public string Description { get; set; }
    2338  }
    24     //[DataContract]
    25     //public class Role
    26     //{
    27     //    [DataMember]
    28     //    public Guid ApplicationId { get; set; }
    29     //    [DataMember]
    30     //    public Guid RoleId { get; set; }
    31     //    [DataMember]
    32     //    public string RoleName { get; set; }
    33         //[DataMember]
    34         //public string LoweredRoleName { get; set; }
    35     //    [DataMember]
    36     //    public string Description { get; set; }
    37     //}
    3839}
Note: See TracChangeset for help on using the changeset viewer.