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,17 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using WebsitePanel.Providers.HostedSolution;
|
||||
|
||||
namespace WebsitePanel.Providers.Web
|
||||
{
|
||||
public interface IWebDav
|
||||
{
|
||||
void CreateWebDavRule(string organizationId, string folder, WebDavFolderRule rule);
|
||||
bool DeleteWebDavRule(string organizationId, string folder, WebDavFolderRule rule);
|
||||
bool DeleteAllWebDavRules(string organizationId, string folder);
|
||||
bool SetFolderWebDavRules(string organizationId, string folder, WebDavFolderRule[] newRules);
|
||||
WebDavFolderRule[] GetFolderWebDavRules(string organizationId, string folder);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue