Feature: Collect additional hardware audit information
When devices enrol the client collects processor, memory, disk and network information which is persisted in the database
This commit is contained in:
@@ -1,10 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Disco.Models.ClientServices.EnrolmentInformation
|
||||
namespace Disco.Models.ClientServices.EnrolmentInformation
|
||||
{
|
||||
public class Processor
|
||||
{
|
||||
@@ -13,9 +7,9 @@ namespace Disco.Models.ClientServices.EnrolmentInformation
|
||||
public string Name { get; set; }
|
||||
public string Description { get; set; }
|
||||
public string Architecture { get; set; }
|
||||
public short Family { get; set; }
|
||||
public int MaxClockSpeed { get; set; }
|
||||
public int NumberOfCores { get; set; }
|
||||
public int NumberOfLogicalProcessors { get; set; }
|
||||
public ushort Family { get; set; }
|
||||
public uint MaxClockSpeed { get; set; }
|
||||
public uint NumberOfCores { get; set; }
|
||||
public uint NumberOfLogicalProcessors { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user