using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
namespace PepperDash.Essentials.Devices.Common.Codec
{
///
/// Defines the contract for IHasCallFavorites
///
public interface IHasCallFavorites
{
CodecCallFavorites CallFavorites { get; }
}
///
/// Represents a CodecCallFavorites
///
public class CodecCallFavorites
{
///
/// Gets or sets the Favorites
///
public List Favorites { get; set; }
public CodecCallFavorites()
{
Favorites = new List();
}
}
}