Files
Disco/Disco.Models/ClientServices/EnrolmentInformation/DiskDrive.cs
T
Gary Sharp f1d27732c7 Feature: Collect additional hardware audit information
When devices enrol the client collects processor, memory, disk and network information which is persisted in the database
2020-11-29 16:43:44 +11:00

19 lines
580 B
C#

using System.Collections.Generic;
namespace Disco.Models.ClientServices.EnrolmentInformation
{
public class DiskDrive
{
public string DeviceID { get; set; }
public string Manufacturer { get; set; }
public string Model { get; set; }
public string MediaType { get; set; }
public string InterfaceType { get; set; }
public string SerialNumber { get; set; }
public string FirmwareRevision { get; set; }
public ulong Size { get; set; }
public List<DiskDrivePartition> Partitions { get; set; }
}
}