Files
Essentials/Essentials DM/Essentials_DM/Config/DmRmcConfig.cs
2017-03-21 08:36:26 -06:00

25 lines
641 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.DM.Cards;
namespace PepperDash.Essentials.DM.Config
{
/// <summary>
/// Represents the "properties" property of a DM TX device config
/// </summary>
public class DmRmcPropertiesConfig
{
[JsonProperty("control")]
public ControlPropertiesConfig Control { get; set; }
[JsonProperty("parentDeviceKey")]
public string ParentDeviceKey { get; set; }
[JsonProperty("parentOutputNumber")]
public uint ParentOutputNumber { get; set; }
}
}