mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-24 18:04:57 +00:00
18 lines
362 B
C#
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; }
|
|
}
|
|
} |