mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-27 11:24:55 +00:00
21 lines
595 B
C#
21 lines
595 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using PepperDash.Core;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common
|
|
{
|
|
public class SetTopBoxPropertiesConfig : PepperDash.Essentials.Core.Config.SourceDevicePropertiesConfigBase
|
|
{
|
|
public bool HasPresets { get; set; }
|
|
public bool HasDvr { get; set; }
|
|
public bool HasDpad { get; set; }
|
|
public bool HasNumeric { get; set; }
|
|
public int IrPulseTime { get; set; }
|
|
|
|
public ControlPropertiesConfig Control { get; set; }
|
|
}
|
|
} |