Showing Rds Server info

This commit is contained in:
vfedosevich 2015-02-16 04:26:12 -08:00
parent 244a600d83
commit 8faf2a7139
17 changed files with 1503 additions and 19 deletions

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WebsitePanel.Providers.RemoteDesktopServices
{
public class RdsServerDriveInfo
{
public string DeviceId { get; set; }
public string VolumeName { get; set; }
public double SizeMb { get; set; }
public double FreeSpaceMb { get; set; }
}
}