This commit is contained in:
Virtuworks 2014-04-15 14:35:38 -04:00
commit 22fd716fb3
5 changed files with 87 additions and 2 deletions

View file

@ -33,6 +33,9 @@ namespace WebsitePanel.Providers.HostedSolution
private int allocatedUsers;
private int createdUsers;
private int allocatedGroups;
private int createdGroups;
private int allocatedDomains;
private int createdDomains;
@ -312,6 +315,18 @@ namespace WebsitePanel.Providers.HostedSolution
get { return usedEnterpriseStorageSpace; }
set { usedEnterpriseStorageSpace = value; }
}
public int AllocatedGroups
{
get { return allocatedGroups; }
set { allocatedGroups = value; }
}
public int CreatedGroups
{
get { return createdGroups; }
set { createdGroups = value; }
}
}
}