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

24 lines
836 B
C#

using System.Collections.Generic;
namespace Disco.Models.ClientServices.EnrolmentInformation
{
public class DeviceHardware
{
public string SerialNumber { get; set; }
public string UUID { get; set; }
public string Manufacturer { get; set; }
public string Model { get; set; }
public string ModelType { get; set; }
public List<Bios> Bios { get; set; }
public List<BaseBoard> BasebBoard { get; set; }
public List<ComputerSystem> ComputerSystem { get; set; }
public List<Processor> Processors { get; set; }
public List<PhysicalMemory> PhysicalMemory { get; set; }
public List<DiskDrive> DiskDrives { get; set; }
public List<NetworkAdapter> NetworkAdapters { get; set; }
public List<Battery> Batteries { get; set; }
}
}