mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
23 lines
732 B
C#
23 lines
732 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.IO;
|
|
using System.Text;
|
|
|
|
namespace Remotely_Library.Models
|
|
{
|
|
public class Drive
|
|
{
|
|
[Key]
|
|
public string ID { get; set; } = Guid.NewGuid().ToString().Replace("-", "");
|
|
public DriveType DriveType { get; set; }
|
|
public string RootDirectory { get; internal set; }
|
|
public string Name { get; internal set; }
|
|
public string DriveFormat { get; internal set; }
|
|
public double FreeSpace { get; internal set; }
|
|
public double TotalSize { get; internal set; }
|
|
public string VolumeLabel { get; internal set; }
|
|
public string DeviceID { get; set; }
|
|
}
|
|
}
|