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