Partial checkin on litigation hold

This commit is contained in:
robvde 2013-01-21 17:01:00 +04:00
parent 65594c80cc
commit 61d803b26b
16 changed files with 243 additions and 72 deletions

View file

@ -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; }