mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-11 19:44:52 +00:00
30 lines
759 B
C#
30 lines
759 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
namespace PepperDash.Essentials.Room.Config
|
|
{
|
|
public class SimplRoomPropertiesConfig : EssentialsHuddleVtc1PropertiesConfig
|
|
{
|
|
[JsonProperty("roomPhoneNumber")]
|
|
public string RoomPhoneNumber { get; set; }
|
|
[JsonProperty("roomURI")]
|
|
public string RoomURI { get; set; }
|
|
[JsonProperty("speedDials")]
|
|
public List<SimplSpeedDial> SpeedDials { get; set; }
|
|
[JsonProperty("volumeSliderNames")]
|
|
public List<string> VolumeSliderNames { get; set; }
|
|
}
|
|
|
|
public class SimplSpeedDial
|
|
{
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
[JsonProperty("number")]
|
|
public string Number { get; set; }
|
|
}
|
|
} |