Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/19/11 17:21:28 (13 years ago)
Author:
ascheibe
Message:

#1648 started working on user management service

Location:
branches/ClientUserManagement/HeuristicLab.Services.UserManagement
Files:
3 added
1 copied

Legend:

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

    r6697 r6800  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    1919 */
    2020#endregion
     21
    2122using System;
    22 using System.Collections.Generic;
    23 using System.Linq;
    24 using System.Text;
    2523using System.Runtime.Serialization;
    2624
    27 namespace HeuristicLab.Services.Authentication.DataTransfer {
     25namespace HeuristicLab.Services.UserManagement.DataTransfer {
    2826
    2927  [DataContract]
    30   public class Role : AuthenticationItem {
    31 
    32     public Role() {
    33       ApplicationId = Guid.Empty;
    34     }
    35 
     28  public class Role : UserManagementItem {
    3629    [DataMember]
    3730    public Guid ApplicationId { get; set; }
Note: See TracChangeset for help on using the changeset viewer.