fixing bugs

This commit is contained in:
vfedosevich 2014-01-04 17:43:26 +03:00
parent 84a17aff4d
commit b9e6bafc1e
41 changed files with 887 additions and 520 deletions

View file

@ -47,6 +47,8 @@ namespace WebsitePanel.Providers.OS
private WebDavFolderRule[] rules;
private string url;
private int fsrmQuotaMB;
private int frsmQuotaGB;
private QuotaType fsrmQuotaType = QuotaType.Soft;
public SystemFile()
{
@ -69,6 +71,18 @@ namespace WebsitePanel.Providers.OS
set { fsrmQuotaMB = value; }
}
public int FRSMQuotaGB
{
get { return frsmQuotaGB; }
set { frsmQuotaGB = value; }
}
public QuotaType FsrmQuotaType
{
get { return fsrmQuotaType; }
set { fsrmQuotaType = value; }
}
public string FullName
{
get { return fullName; }