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:
Neil Dorin
2020-02-13 12:40:23 -07:00
parent 5281564ba4
commit caf2731dfb
8 changed files with 76 additions and 17 deletions

View File

@@ -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; }
}
}