mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-06 00:05:05 +00:00
19 lines
439 B
C#
19 lines
439 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; }
|
|
|
|
}
|
|
} |