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

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; }
}
}