using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; namespace PepperDash.Essentials.Devices.Common.Codec { public interface IHasCallFavorites { CodecCallFavorites CallFavorites { get; } } /// /// Represents favorites entries for a codec device /// public class CodecCallFavorites { public List Favorites { get; set; } public CodecCallFavorites() { Favorites = new List(); } } }