namespace PepperDash.Essentials.Devices.Common.AudioCodec
{
///
/// Implements a common set of data about a codec
///
public interface IAudioCodecInfo
{
///
/// Gets the codec information
///
AudioCodecInfo CodecInfo { get; }
}
///
/// Stores general information about a codec
///
public abstract class AudioCodecInfo
{
///
/// Gets or sets the phone number
///
public abstract string PhoneNumber { get; set; }
}
}