UserPrincipalName added to the collection of user info

This commit is contained in:
robvde 2012-11-19 17:53:16 +04:00
parent e47cf9af73
commit 06ea9b8e34
6 changed files with 35 additions and 9 deletions

View file

@ -64,6 +64,7 @@ namespace WebsitePanel.Providers.HostedSolution
private string country;
private string notes;
private string domainUserName;
private string userPrincipalName;
private bool disabled;
private bool locked;
@ -305,6 +306,11 @@ namespace WebsitePanel.Providers.HostedSolution
set { subscriberNumber = value; }
}
public string UserPrincipalName
{
get { return userPrincipalName; }
set { userPrincipalName = value; }
}
}