mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-11 02:35:00 +00:00
WIP: added support for HD-PS401, HD-PS402, HD-PS621 and HD-PS622, pending testing with device.
18 lines
426 B
C#
18 lines
426 B
C#
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
using PepperDash.Core;
|
|
|
|
namespace PepperDash_Essentials_DM.Config
|
|
{
|
|
public class HdPsXxxPropertiesConfig
|
|
{
|
|
[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; }
|
|
}
|
|
} |