mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 12:44:58 +00:00
fix: add correct casing to base touchpanel config
This commit is contained in:
@@ -1,20 +1,49 @@
|
|||||||
namespace PepperDash.Essentials.Core
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
namespace PepperDash.Essentials.Core
|
||||||
{
|
{
|
||||||
public class CrestronTouchpanelPropertiesConfig
|
public class CrestronTouchpanelPropertiesConfig
|
||||||
{
|
{
|
||||||
|
[JsonProperty("ipId")]
|
||||||
public string IpId { get; set; }
|
public string IpId { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("defaultRoomKey")]
|
||||||
public string DefaultRoomKey { get; set; }
|
public string DefaultRoomKey { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("roomListKey")]
|
||||||
public string RoomListKey { get; set; }
|
public string RoomListKey { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("sgdFile")]
|
||||||
public string SgdFile { get; set; }
|
public string SgdFile { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("projectName")]
|
||||||
public string ProjectName { get; set; }
|
public string ProjectName { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("showVolumeGauge")]
|
||||||
public bool ShowVolumeGauge { get; set; }
|
public bool ShowVolumeGauge { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("usesSplashPage")]
|
||||||
public bool UsesSplashPage { get; set; }
|
public bool UsesSplashPage { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("showDate")]
|
||||||
public bool ShowDate { get; set; }
|
public bool ShowDate { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("showTime")]
|
||||||
public bool ShowTime { get; set; }
|
public bool ShowTime { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("setup")]
|
||||||
public UiSetupPropertiesConfig Setup { get; set; }
|
public UiSetupPropertiesConfig Setup { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("headerStyle")]
|
||||||
public string HeaderStyle { get; set; }
|
public string HeaderStyle { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("includeInFusionRoomHealth")]
|
||||||
public bool IncludeInFusionRoomHealth { get; set; }
|
public bool IncludeInFusionRoomHealth { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("screenSaverTimeoutMin")]
|
||||||
public uint ScreenSaverTimeoutMin { get; set; }
|
public uint ScreenSaverTimeoutMin { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("screenSaverMovePositionIntervalMs")]
|
||||||
public uint ScreenSaverMovePositionIntervalMs { get; set; }
|
public uint ScreenSaverMovePositionIntervalMs { get; set; }
|
||||||
|
|
||||||
|
|
||||||
@@ -22,6 +51,7 @@
|
|||||||
/// The count of sources that will trigger the "additional" arrows to show on the SRL.
|
/// The count of sources that will trigger the "additional" arrows to show on the SRL.
|
||||||
/// Defaults to 5
|
/// Defaults to 5
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[JsonProperty("sourcesOverflowCount")]
|
||||||
public int SourcesOverflowCount { get; set; }
|
public int SourcesOverflowCount { get; set; }
|
||||||
|
|
||||||
public CrestronTouchpanelPropertiesConfig()
|
public CrestronTouchpanelPropertiesConfig()
|
||||||
@@ -49,6 +79,7 @@
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public class UiSetupPropertiesConfig
|
public class UiSetupPropertiesConfig
|
||||||
{
|
{
|
||||||
|
[JsonProperty("isVisible")]
|
||||||
public bool IsVisible { get; set; }
|
public bool IsVisible { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user