using System.Collections.Generic;
namespace PepperDash.Essentials.Devices.Common.Codec
{
///
/// Defines the contract for IHasCallFavorites
///
public interface IHasCallFavorites
{
///
/// Gets the call favorites for this device
///
CodecCallFavorites CallFavorites { get; }
}
///
/// Represents a CodecCallFavorites
///
public class CodecCallFavorites
{
///
/// Gets or sets the Favorites
///
public List Favorites { get; set; }
///
/// Initializes a new instance of the CodecCallFavorites class
///
public CodecCallFavorites()
{
Favorites = new List();
}
}
}