Partial Checkin

This commit is contained in:
robvde 2013-09-29 19:33:26 +04:00
parent 6a0ab52396
commit 805a74ba65
15 changed files with 577 additions and 4 deletions

View file

@ -43,6 +43,7 @@ namespace WebsitePanel.Providers.OS
private long size;
private long quota;
private bool isEmpty;
private bool isPublished;
public SystemFile()
{
@ -89,10 +90,23 @@ namespace WebsitePanel.Providers.OS
set { size = value; }
}
public long Quota
{
get { return quota; }
set { quota = value; }
}
public bool IsEmpty
{
get { return this.isEmpty; }
set { this.isEmpty = value; }
}
public bool IsPublished
{
get { return this.isPublished; }
set { this.isPublished = value; }
}
}
}