using PepperDash.Core;
namespace PepperDash.Essentials.Devices.Common
{
///
/// Represents a SetTopBoxPropertiesConfig
///
public class SetTopBoxPropertiesConfig : PepperDash.Essentials.Core.Config.SourceDevicePropertiesConfigBase
{
///
/// Gets or sets the HasPresets
///
public bool HasPresets { get; set; }
///
/// Gets or sets the HasDvr
///
public bool HasDvr { get; set; }
///
/// Gets or sets the HasDpad
///
public bool HasDpad { get; set; }
///
/// Gets or sets the HasNumeric
///
public bool HasNumeric { get; set; }
///
/// Gets or sets the IrPulseTime
///
public int IrPulseTime { get; set; }
///
/// Gets or sets the Control
///
public ControlPropertiesConfig Control { get; set; }
}
}