using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
using PepperDash.Core;
using Newtonsoft.Json;
namespace EssentialsPluginTemplateEPI
{
///
/// Example of a config class that represents the structure of the Properties object of a DeviceConfig
///
public class EssentialsPluginTemplatePropertiesConfig
{
///
/// Control properties if needed to communicate with device
///
[JsonProperty("control")]
ControlPropertiesConfig Control { get; set; }
}
}