mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-30 21:04:48 +00:00
20 lines
617 B
C#
20 lines
617 B
C#
using Newtonsoft.Json;
|
|
using PepperDash.Essentials.Core;
|
|
|
|
namespace PepperDash.Essentials.Touchpanel
|
|
{
|
|
public class MobileControlTouchpanelProperties : CrestronTouchpanelPropertiesConfig
|
|
{
|
|
[JsonProperty("useDirectServer")]
|
|
public bool UseDirectServer { get; set; } = false;
|
|
|
|
[JsonProperty("zoomRoomController")]
|
|
public bool ZoomRoomController { get; set; } = false;
|
|
|
|
[JsonProperty("buttonToolbarTimeoutInS")]
|
|
public ushort ButtonToolbarTimoutInS { get; set; } = 0;
|
|
|
|
[JsonProperty("theme")]
|
|
public string Theme { get; set; } = "light";
|
|
}
|
|
} |