Litigation hold partial check in
This commit is contained in:
parent
cf547da56e
commit
57483fbf7f
5 changed files with 200 additions and 3 deletions
|
@ -98,6 +98,10 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
DateTime lastLogon;
|
||||
DateTime lastLogoff;
|
||||
|
||||
bool enableLitigationHold;
|
||||
long recoverabelItemsSpace;
|
||||
long recoverabelItemsWarning;
|
||||
|
||||
|
||||
|
||||
public string DisplayName
|
||||
|
@ -399,5 +403,26 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
get { return fullAccessAccounts; }
|
||||
set { fullAccessAccounts = value; }
|
||||
}
|
||||
|
||||
|
||||
public bool EnableLitigationHold
|
||||
{
|
||||
get { return enableLitigationHold; }
|
||||
set { enableLitigationHold = value; }
|
||||
}
|
||||
|
||||
|
||||
public long RecoverabelItemsSpace
|
||||
{
|
||||
get { return this.recoverabelItemsSpace; }
|
||||
set { this.recoverabelItemsSpace = value; }
|
||||
}
|
||||
|
||||
public long RecoverabelItemsWarning
|
||||
{
|
||||
get { return this.recoverabelItemsWarning; }
|
||||
set { this.recoverabelItemsWarning = value; }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue