f1d27732c7
When devices enrol the client collects processor, memory, disk and network information which is persisted in the database
17 lines
486 B
C#
17 lines
486 B
C#
namespace Disco.Models.ClientServices.EnrolmentInformation
|
|
{
|
|
public class PhysicalMemory
|
|
{
|
|
public string Tag { get; set; }
|
|
public string SerialNumber { get; set; }
|
|
public string Manufacturer { get; set; }
|
|
public string PartNumber { get; set; }
|
|
|
|
public ulong Capacity { get; set; }
|
|
public uint ConfiguredClockSpeed { get; set; }
|
|
public uint Speed { get; set; }
|
|
|
|
public string DeviceLocator { get; set; }
|
|
}
|
|
}
|