using System; using System.Collections.Generic; using System.Text; namespace DirectUSB.Attributes { public abstract class SpecifiedAttribute : Attribute { public enum SpecifiedAttributeType { SpecifiedVariableType = 0x0011 } public SpecifiedAttribute(short type, bool valid, byte[] data) : base(type, valid, data) { } } }