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

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