Add “Groups” link users displaying quota usage

This commit is contained in:
vfedosevich 2014-04-15 06:15:27 +03:00
parent a402c68e7a
commit 06f98076c6
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;
@ -266,6 +269,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; }
}
}
}