mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-10 02:05:08 +00:00
24 lines
557 B
C#
24 lines
557 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.AudioCodec
|
|
{
|
|
/// <summary>
|
|
/// Implements a common set of data about a codec
|
|
/// </summary>
|
|
public interface IAudioCodecInfo
|
|
{
|
|
AudioCodecInfo CodecInfo { get; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Stores general information about a codec
|
|
/// </summary>
|
|
public abstract class AudioCodecInfo
|
|
{
|
|
public abstract string PhoneNumber { get; set; }
|
|
}
|
|
} |