Add “Groups” link users displaying quota usage
This commit is contained in:
parent
a402c68e7a
commit
06f98076c6
5 changed files with 87 additions and 2 deletions
|
@ -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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue