Files
Disco/Disco.Models/ClientServices/EnrolmentInformation/DiskDrivePartition.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

16 lines
485 B
C#

namespace Disco.Models.ClientServices.EnrolmentInformation
{
public class DiskDrivePartition
{
public string DeviceID { get; set; }
public bool Bootable { get; set; }
public bool BootPartition { get; set; }
public bool PrimaryParition { get; set; }
public ulong Size { get; set; }
public ulong StartingOffset { get; set; }
public string Type { get; set; }
public DiskLogical LogicalDisk { get; set; }
}
}