mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
16 lines
414 B
C#
16 lines
414 B
C#
|
|
using Newtonsoft.Json;
|
|
|
|
namespace PepperDash.Essentials.Room.Config;
|
|
|
|
/// <summary>
|
|
/// Represents a EssentialsHuddleVtc1PropertiesConfig
|
|
/// </summary>
|
|
public class EssentialsHuddleVtc1PropertiesConfig : EssentialsConferenceRoomPropertiesConfig
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the DefaultDisplayKey
|
|
/// </summary>
|
|
[JsonProperty("defaultDisplayKey")]
|
|
public string DefaultDisplayKey { get; set; }
|
|
}
|