mirror of
https://github.com/PepperDash/EssentialsPluginTemplate.git
synced 2026-01-11 19:44:38 +00:00
26 lines
640 B
C#
26 lines
640 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using PepperDash.Core;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
namespace EssentialsPluginTemplateEPI
|
|
{
|
|
/// <summary>
|
|
/// Example of a config class that represents the structure of the Properties object of a DeviceConfig
|
|
/// </summary>
|
|
public class EssentialsPluginTemplatePropertiesConfig
|
|
{
|
|
/// <summary>
|
|
/// Control properties if needed to communicate with device
|
|
/// </summary>
|
|
[JsonProperty("control")]
|
|
ControlPropertiesConfig Control { get; set; }
|
|
|
|
|
|
}
|
|
} |