Files
Essentials/essentials-framework/Essentials DM/Essentials_DM/Endpoints/DGEs/DgePropertiesConfig.cs

18 lines
362 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
using PepperDash.Core;
using Newtonsoft.Json;
namespace PepperDash.Essentials.DM.Endpoints.DGEs
{
public class DgePropertiesConfig
{
[JsonProperty("control")]
public ControlPropertiesConfig Control { get; set; }
}
}