add functionallity enterprise storage

This commit is contained in:
vfedosevich 2013-11-04 18:07:47 +03:00
parent cdf761d3ec
commit 922009d402
54 changed files with 4427 additions and 563 deletions

View file

@ -27,7 +27,7 @@
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
using System;
using WebsitePanel.Providers.Web;
namespace WebsitePanel.Providers.OS
{
/// <summary>
@ -44,6 +44,8 @@ namespace WebsitePanel.Providers.OS
private long quota;
private bool isEmpty;
private bool isPublished;
private WebDavFolderRule[] rules;
private string url;
public SystemFile()
{
@ -108,5 +110,16 @@ namespace WebsitePanel.Providers.OS
set { this.isPublished = value; }
}
public WebDavFolderRule[] Rules
{
get { return this.rules; }
set { this.rules = value; }
}
public string Url
{
get { return this.url; }
set { this.url = value; }
}
}
}