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

@ -0,0 +1,20 @@
namespace WebsitePanel.Providers.OS
{
public class SystemFilesPaged
{
int recordsCount;
SystemFile[] pageItems;
public int RecordsCount
{
get { return this.recordsCount; }
set { this.recordsCount = value; }
}
public SystemFile[] PageItems
{
get { return this.pageItems; }
set { this.pageItems = value; }
}
}
}