mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-23 06:18:54 +00:00
20 lines
556 B
C#
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>();
|
|
}
|
|
}
|
|
}
|