Files
2020-12-04 15:51:23 +11:00

17 lines
489 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; }
}
}