using System.Management; namespace Trigger.Classes.Device { /// /// A USB stick/disk /// public class UsbDisk : StorageDisk { /// /// Initialize a new instance with the given values. /// /// public UsbDisk(ManagementObject mo) : base(mo) { this.Type = DeviceType.USB; } } }