mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-26 05:22:19 +00:00
23 lines
No EOL
457 B
C#
23 lines
No EOL
457 B
C#
/* Licensed under the terms of the New BSD License.
|
|
*
|
|
* Authors:
|
|
* Gero Landmann (gero_dev) <gero@myzeug.de>
|
|
*/
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using Cosmos.Kernel;
|
|
|
|
namespace Cosmos.Hardware.SMBIOS
|
|
{
|
|
public abstract class BaseInfo : IHardwareType
|
|
{
|
|
#region IHardwareType Members
|
|
|
|
public byte HardwareType { get; protected set; }
|
|
|
|
public ushort Handle { get; protected set; }
|
|
|
|
#endregion
|
|
}
|
|
} |