20 lines
393 B
C#
20 lines
393 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Management.Automation;
|
|
using System.Management.Automation.Provider;
|
|
|
|
|
|
namespace Intel.Management.PSModule.Heci
|
|
{
|
|
class HeciInfo : DriveInfo
|
|
{
|
|
public HeciInfo(PSDriveInfo driveInfo)
|
|
: base(driveInfo)
|
|
{
|
|
_root = new HeciRoot();
|
|
}
|
|
}
|
|
}
|