This commit is contained in:
vfedosevich 2013-10-25 11:15:33 +03:00
parent cdf761d3ec
commit cb45022c59
5 changed files with 25 additions and 2 deletions

View file

@ -50,6 +50,7 @@ namespace WebsitePanel.Providers.HostedSolution
string mailboxPlan;
string publicFolderPermission;
string userPrincipalName;
string notes;
public int AccountId
{
@ -149,5 +150,10 @@ namespace WebsitePanel.Providers.HostedSolution
set { this.userPrincipalName = value; }
}
public string Notes
{
get { return this.notes; }
set { this.notes = value; }
}
}
}