update functionallity enterprise storage

This commit is contained in:
vfedosevich 2013-11-05 17:54:40 +03:00
parent 922009d402
commit 8784e493d5
28 changed files with 10952 additions and 8121 deletions

View file

@ -7,10 +7,17 @@ namespace WebsitePanel.EnterpriseServer.Base.HostedSolution
{
public class ESPermission
{
string displayName;
string account;
string access;
bool isGroup;
public string DisplayName
{
get { return displayName; }
set { displayName = value; }
}
public string Account
{
get { return account; }
@ -26,7 +33,8 @@ namespace WebsitePanel.EnterpriseServer.Base.HostedSolution
public bool IsGroup
{
get { return isGroup; }
set { isGroup = value; }
set { isGroup = value; }
}
}
}