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; }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -234,5 +234,8 @@ order by rg.groupOrder
|
|||
|
||||
public const string HELICON_ZOO = "HeliconZoo.*";
|
||||
|
||||
public const string ENTERPRISESTORAGE_DISKSTORAGESPACE = "EnterpriseStorage.DiskStorageSpace";
|
||||
public const string ENTERPRISESTORAGE_FOLDERS = "EnterpriseStorage.Folders";
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -117,6 +117,7 @@
|
|||
<Compile Include="Ecommerce\TriggerSystem\ITriggerHandler.cs" />
|
||||
<Compile Include="ExchangeServer\ExchangeEmailAddress.cs" />
|
||||
<Compile Include="HostedSolution\AdditionalGroup.cs" />
|
||||
<Compile Include="HostedSolution\ESPermission.cs" />
|
||||
<Compile Include="Log\LogRecord.cs" />
|
||||
<Compile Include="Packages\HostingPlanContext.cs" />
|
||||
<Compile Include="Packages\HostingPlanGroupInfo.cs" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue