mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-01 13:55:05 +00:00
34 lines
698 B
C#
34 lines
698 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Codec
|
|
|
|
{
|
|
public class CodecActiveCallItem
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public string Number { get; set; }
|
|
|
|
public eCodecCallType Type { get; set; }
|
|
|
|
public eCodecCallStatus Status { get; set; }
|
|
|
|
public string Id { get; set; }
|
|
|
|
public object CallMetaData { get; set; }
|
|
}
|
|
|
|
public enum eCodecCallType
|
|
{
|
|
Unknown = 0, Audio, Video
|
|
}
|
|
|
|
public enum eCodecCallStatus
|
|
{
|
|
Unknown = 0, Dialing, Connected, Incoming, OnHold, Disconnected
|
|
}
|
|
} |