mirror of
https://github.com/PepperDash/EssentialsPluginTemplate.git
synced 2026-08-31 19:28:19 +00:00
Updates to add comments and better organize. Updates to Github repo for submodule and to latest release version of Essentials (1.4.31)
This commit is contained in:
parent
5281564ba4
commit
caf2731dfb
8 changed files with 76 additions and 17 deletions
|
|
@ -4,9 +4,23 @@ using System.Linq;
|
|||
using System.Text;
|
||||
using Crestron.SimplSharp;
|
||||
|
||||
using PepperDash.Core;
|
||||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace EssentialsPluginTemplateEPI
|
||||
{
|
||||
public class EssentialsPluginTemplateConfigObject
|
||||
/// <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; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue