mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 12:06:58 +00:00
Added in source list filtering based on in-call and current mode of UI driver (call or present)
This commit is contained in:
parent
6ee56dd66c
commit
032bb2b8e5
8 changed files with 80 additions and 25 deletions
|
|
@ -18,6 +18,7 @@ using PepperDash.Essentials.Devices.Common.Occupancy;
|
|||
|
||||
using PepperDash.Essentials.Devices.Common;
|
||||
|
||||
|
||||
namespace PepperDash.Essentials.Devices.Common
|
||||
{
|
||||
public class DeviceFactory
|
||||
|
|
@ -28,6 +29,8 @@ namespace PepperDash.Essentials.Devices.Common
|
|||
var name = dc.Name;
|
||||
var type = dc.Type;
|
||||
var properties = dc.Properties;
|
||||
var propAnon = new {};
|
||||
JsonConvert.DeserializeAnonymousType(dc.Properties.ToString(), propAnon);
|
||||
|
||||
var typeName = dc.Type.ToLower();
|
||||
var groupName = dc.Group.ToLower();
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ using PepperDash.Core;
|
|||
|
||||
namespace PepperDash.Essentials.Devices.Common
|
||||
{
|
||||
public class SetTopBoxPropertiesConfig
|
||||
public class SetTopBoxPropertiesConfig : PepperDash.Essentials.Core.Config.SourceDevicePropertiesConfigBase
|
||||
{
|
||||
public bool HasPresets { get; set; }
|
||||
public bool HasDvr { get; set; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue