mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
16 lines
421 B
C#
16 lines
421 B
C#
using System.IO;
|
|
|
|
namespace Remotely.Shared.Models
|
|
{
|
|
public class Drive
|
|
{
|
|
public DriveType DriveType { get; set; }
|
|
public string RootDirectory { get; set; }
|
|
public string Name { get; set; }
|
|
public string DriveFormat { get; set; }
|
|
public double FreeSpace { get; set; }
|
|
public double TotalSize { get; set; }
|
|
public string VolumeLabel { get; set; }
|
|
}
|
|
}
|