f946f3250c
resolves #160
26 lines
889 B
C#
26 lines
889 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 string MdmHardwareData { 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; }
|
|
}
|
|
}
|