mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-25 02:14:56 +00:00
35 lines
942 B
C#
35 lines
942 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
using Newtonsoft.Json;
|
|
|
|
using PepperDash.Core;
|
|
|
|
namespace PepperDash.Essentials.DM.Config
|
|
{
|
|
/// <summary>
|
|
/// Defines the properties section of HdMdNxM boxes
|
|
/// </summary>
|
|
public class HdMdNxM4kEPropertiesConfig
|
|
{
|
|
[JsonProperty("control")]
|
|
public ControlPropertiesConfig Control { get; set; }
|
|
|
|
[JsonProperty("inputs")]
|
|
public Dictionary<string, InputPropertiesConfig> Inputs { get; set; }
|
|
}
|
|
|
|
public class HdMdNxM4kEBridgeablePropertiesConfig
|
|
{
|
|
[JsonProperty("control")]
|
|
public ControlPropertiesConfig Control { get; set; }
|
|
|
|
[JsonProperty("inputs")]
|
|
public Dictionary<uint, string> Inputs { get; set; }
|
|
|
|
[JsonProperty("outputs")]
|
|
public Dictionary<uint, string> Outputs { get; set; }
|
|
}
|
|
} |