add functionallity enterprise storage
This commit is contained in:
parent
cdf761d3ec
commit
922009d402
54 changed files with 4427 additions and 563 deletions
|
@ -0,0 +1,32 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace WebsitePanel.EnterpriseServer.Base.HostedSolution
|
||||
{
|
||||
public class ESPermission
|
||||
{
|
||||
string account;
|
||||
string access;
|
||||
bool isGroup;
|
||||
|
||||
public string Account
|
||||
{
|
||||
get { return account; }
|
||||
set { account = value; }
|
||||
}
|
||||
|
||||
public string Access
|
||||
{
|
||||
get { return access; }
|
||||
set { access = value; }
|
||||
}
|
||||
|
||||
public bool IsGroup
|
||||
{
|
||||
get { return isGroup; }
|
||||
set { isGroup = value; }
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue