partial commit enterprise storage

This commit is contained in:
robvde 2013-08-20 09:22:41 +04:00
parent 8b9677c92c
commit c912242fa2
4 changed files with 138 additions and 2 deletions

View file

@ -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);
}
}