Cosmos/source/Cosmos.Core/SMBIOS/SMBIOSStructure.cs
Valentin Charbonnier 2c28dff298 First CPU Impl.
2018-03-26 21:20:51 +02:00

20 lines
556 B
C#

using System.Collections.Generic;
namespace Cosmos.Core.SMBIOS
{
/// <summary>
/// This class is a container for each table of the smbios structure
/// This class should be forwarded to HAL for further parsing
/// </summary>
public class SMBIOSStructure
{
public EntryPointTable EntryPointTable { get; set; }
public BIOSInfo BiosInfo { get; set; }
public List<CPUInfo> CpuInfoList { get; set; }
public SMBIOSStructure()
{
CpuInfoList = new List<CPUInfo>();
}
}
}