websitepanel/WebsitePanel/Sources/WebsitePanel.Providers.Base/RemoteDesktopServices/RdsServerDriveInfo.cs
2015-02-16 04:26:12 -08:00

15 lines
395 B
C#

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; }
}
}