Partial checkin on litigation hold
This commit is contained in:
parent
65594c80cc
commit
61d803b26b
16 changed files with 243 additions and 72 deletions
|
@ -51,6 +51,10 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
private int allocatedDiskSpace;
|
||||
private int usedDiskSpace;
|
||||
|
||||
private int allocatedLitigationHoldSpace;
|
||||
private int usedLitigationHoldSpace;
|
||||
|
||||
|
||||
private int allocatedSharePointSiteCollections;
|
||||
private int createdSharePointSiteCollections;
|
||||
|
||||
|
@ -154,6 +158,18 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
set { usedDiskSpace = value; }
|
||||
}
|
||||
|
||||
public int AllocatedLitigationHoldSpace
|
||||
{
|
||||
get { return allocatedLitigationHoldSpace; }
|
||||
set { allocatedLitigationHoldSpace = value; }
|
||||
}
|
||||
|
||||
public int UsedLitigationHoldSpace
|
||||
{
|
||||
get { return usedLitigationHoldSpace; }
|
||||
set { usedLitigationHoldSpace = value; }
|
||||
}
|
||||
|
||||
public int AllocatedSharePointSiteCollections
|
||||
{
|
||||
get { return allocatedSharePointSiteCollections; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue