f1d27732c7
When devices enrol the client collects processor, memory, disk and network information which is persisted in the database
19 lines
580 B
C#
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; }
|
|
}
|
|
}
|