using System; using System.Collections.Generic; using System.Text; namespace DirectUSB.Attributes { public class ArchivedStatusAttribute : Attribute { #region Constructors / Teardown public ArchivedStatusAttribute(short type, bool valid, byte[] data) : base(type, valid, data) { //Do nothing } #endregion #region Public Properties public bool IsArchived { get { return (Data[0] > 0x00); } } #endregion } }