This commit is contained in:
dev_amdtel 2013-10-30 09:12:06 +04:00
commit 8dcd01cb20
17 changed files with 105 additions and 17 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; }
}
}
}

View file

@ -102,6 +102,8 @@ namespace WebsitePanel.Providers.HostedSolution
long recoverabelItemsSpace;
long recoverabelItemsWarning;
string exchangeGuid;
public string DisplayName
@ -424,5 +426,12 @@ namespace WebsitePanel.Providers.HostedSolution
set { this.recoverabelItemsWarning = value; }
}
public string ExchangeGuid
{
get { return this.exchangeGuid; }
set { this.exchangeGuid = value; }
}
}
}