using System.Management;
namespace Trigger.Classes.Device
{
///
/// An IDE disk. This can be a hard drive or solid stade disk
///
public class IdeDisk : StorageDisk
{
///
/// Initialize a new instance with the given values.
///
///
public IdeDisk(ManagementObject mo) : base(mo)
{
this.Type = DeviceType.IDE;
}
}
}