Files
Disco/Disco.Models/ClientServices/EnrolmentInformation/Processor.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
536 B
C#

namespace Disco.Models.ClientServices.EnrolmentInformation
{
public class Processor
{
public string DeviceID { get; set; }
public string Manufacturer { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Architecture { get; set; }
public ushort Family { get; set; }
public uint MaxClockSpeed { get; set; }
public uint NumberOfCores { get; set; }
public uint NumberOfLogicalProcessors { get; set; }
}
}