using System; using System.Collections.Generic; using System.Text; namespace DirectUSB.Parameters { public class ClockOnParameter : Parameter { #region Constructors / Teardown public ClockOnParameter(short type, bool valid, byte[] data) : base(type, valid, data) { //Do nothing } #endregion #region Public Properties public bool IsClockOn { get { return Data[0] == 0 ? false : true; } } #endregion } }