partial commit enterprise storage
This commit is contained in:
parent
8b9677c92c
commit
c912242fa2
4 changed files with 138 additions and 2 deletions
|
@ -28,6 +28,7 @@
|
|||
|
||||
using System;
|
||||
using System.Collections;
|
||||
using WebsitePanel.Providers.OS;
|
||||
|
||||
namespace WebsitePanel.Providers.EnterpriseStorage
|
||||
{
|
||||
|
@ -36,6 +37,10 @@ namespace WebsitePanel.Providers.EnterpriseStorage
|
|||
/// </summary>
|
||||
public interface IEnterpriseStorage
|
||||
{
|
||||
|
||||
SystemFile[] GetFolders(string organizationId);
|
||||
SystemFile GetFolder(string organizationId, string folder);
|
||||
void CreateFolder(string organizationId, string folder);
|
||||
void DeleteFolder(string organizationId, string folder);
|
||||
void SetFolderQuota(string organizationId, string folder, long quota);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue