mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-21 16:34:48 +00:00
24 lines
603 B
C#
24 lines
603 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Crestron.SimplSharpPro.DM;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
using PepperDash.Core;
|
|
|
|
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; }
|
|
}
|
|
} |