diff --git a/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/Interfaces/IHasMeetingInfo.cs b/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/Interfaces/IHasMeetingInfo.cs index 46a10b99..4f1744b9 100644 --- a/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/Interfaces/IHasMeetingInfo.cs +++ b/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/Interfaces/IHasMeetingInfo.cs @@ -4,6 +4,8 @@ using System.Linq; using System.Text; using Crestron.SimplSharp; +using Newtonsoft.Json; + namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces { /// @@ -22,10 +24,15 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces /// public class MeetingInfo { + [JsonProperty("id")] public string Id { get; private set; } + [JsonProperty("name")] public string Name { get; private set; } + [JsonProperty("host")] public string Host { get; set; } + [JsonProperty("password")] public string Password { get; private set; } + [JsonProperty("shareStatus")] public string ShareStatus { get; private set; } public MeetingInfo(string id, string name, string host, string password, string shareStatus)