added functionality of drive mapping

This commit is contained in:
vfedosevich 2014-06-10 04:00:51 +03:00
parent a07c04a187
commit c2ef09c26e
35 changed files with 3196 additions and 11 deletions

View file

@ -49,6 +49,7 @@ namespace WebsitePanel.Providers.OS
private int fsrmQuotaMB;
private int frsmQuotaGB;
private QuotaType fsrmQuotaType = QuotaType.Soft;
private string driveLetter;
public SystemFile()
{
@ -142,5 +143,11 @@ namespace WebsitePanel.Providers.OS
get { return this.url; }
set { this.url = value; }
}
public string DriveLetter
{
get { return this.driveLetter; }
set { this.driveLetter = value; }
}
}
}