mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-10 02:05:08 +00:00
30 lines
863 B
C#
30 lines
863 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Codec
|
|
{
|
|
/// <summary>
|
|
/// Implements a common set of data about a codec
|
|
/// </summary>
|
|
public interface iVideoCodecInfo
|
|
{
|
|
VideoCodecInfo CodecInfo { get; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Stores general information about a codec
|
|
/// </summary>
|
|
public abstract class VideoCodecInfo
|
|
{
|
|
public abstract bool MultiSiteOptionIsEnabled { get; }
|
|
public abstract string IpAddress { get; }
|
|
public abstract string SipPhoneNumber { get; }
|
|
public abstract string E164Alias { get; }
|
|
public abstract string H323Id { get; }
|
|
public abstract string SipUri { get; }
|
|
public abstract bool AutoAnswerEnabled { get; }
|
|
}
|
|
} |