Added litigation hold feature for exchange

This commit is contained in:
robvde 2013-01-23 13:25:58 +04:00
parent 95ca048684
commit dfe54e7f16
20 changed files with 229 additions and 102 deletions

View file

@ -59,6 +59,8 @@ namespace WebsitePanel.Providers.HostedSolution
bool allowLitigationHold;
int recoverableItemsWarningPct;
int recoverableItemsSpace;
string litigationHoldUrl;
string litigationHoldMsg;
public int ItemId
@ -196,5 +198,16 @@ namespace WebsitePanel.Providers.HostedSolution
set { this.recoverableItemsSpace = value; }
}
public string LitigationHoldUrl
{
get { return this.litigationHoldUrl; }
set { this.litigationHoldUrl = value; }
}
public string LitigationHoldMsg
{
get { return this.litigationHoldMsg; }
set { this.litigationHoldMsg = value; }
}
}
}