Remotely/Shared/Models/Drive.cs
Jared Goodwin a0405e28a0 WIP
2019-06-15 18:08:30 -07:00

20 lines
533 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.IO;
using System.Text;
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; }
}
}