mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-08 17:24:47 +00:00
26 lines
595 B
C#
26 lines
595 B
C#
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; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Represents favorites entries for a codec device
|
|
/// </summary>
|
|
public class CodecCallFavorites
|
|
{
|
|
public List<CodecActiveCallItem> Favorites { get; set; }
|
|
|
|
public CodecCallFavorites()
|
|
{
|
|
Favorites = new List<CodecActiveCallItem>();
|
|
}
|
|
}
|
|
} |