mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-21 16:34:48 +00:00
33 lines
840 B
C#
33 lines
840 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Crestron.SimplSharpPro.DM;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
using PepperDash.Core;
|
|
using PepperDash.Essentials.Core;
|
|
|
|
namespace PepperDash.Essentials.DM.Config
|
|
{
|
|
/// <summary>
|
|
/// Represents the "properties" property of a DM device config
|
|
/// </summary>
|
|
public class DmpsRoutingPropertiesConfig
|
|
{
|
|
[JsonProperty("inputNames")]
|
|
public Dictionary<uint, string> InputNames { get; set; }
|
|
|
|
[JsonProperty("outputNames")]
|
|
public Dictionary<uint, string> OutputNames { get; set; }
|
|
|
|
[JsonProperty("noRouteText")]
|
|
public string NoRouteText { get; set; }
|
|
|
|
public DmpsRoutingPropertiesConfig()
|
|
{
|
|
InputNames = new Dictionary<uint, string>();
|
|
OutputNames = new Dictionary<uint, string>();
|
|
}
|
|
}
|
|
|
|
|
|
} |