mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-08 01:04:56 +00:00
update MockVC and EssentialsVideoCodecUiDriver updates to Cisco classes to address some exceptions at startup with EssentialsVideoCodecUiDriver
28 lines
725 B
C#
28 lines
725 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
using Newtonsoft.Json;
|
|
|
|
using PepperDash.Core;
|
|
using PepperDash.Essentials.Core;
|
|
using PepperDash.Essentials.Devices.Common.Codec;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.VideoCodec
|
|
{
|
|
public class MockVcPropertiesConfig
|
|
{
|
|
[JsonProperty("favorites")]
|
|
public List<CodecActiveCallItem> Favorites { get; set; }
|
|
|
|
[JsonProperty("presets")]
|
|
public List<CodecRoomPreset> Presets { get; set; }
|
|
|
|
public MockVcPropertiesConfig()
|
|
{
|
|
Favorites = new List<CodecActiveCallItem>();
|
|
Presets = new List<CodecRoomPreset>();
|
|
}
|
|
}
|
|
} |