fixing bugs
This commit is contained in:
parent
84a17aff4d
commit
b9e6bafc1e
41 changed files with 887 additions and 520 deletions
|
@ -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; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue