mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-08 17:24:47 +00:00
43 lines
912 B
C#
43 lines
912 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.VideoCodec
|
|
|
|
{
|
|
public class CodecActiveCallItem
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public string Number { get; set; }
|
|
|
|
<<<<<<< HEAD
|
|
public eCodecCallType Type { get; private set; }
|
|
|
|
public CodecActiveCallItem(string name, string number, eCodecCallType type)
|
|
{
|
|
Name = name;
|
|
Number = number;
|
|
Type = type;
|
|
}
|
|
=======
|
|
public eCodecCallType Type { get; set; }
|
|
|
|
public eCodecCallStatus Status { get; set; }
|
|
|
|
public string Id { get; set; }
|
|
>>>>>>> origin/feature/cisco-spark-2
|
|
}
|
|
|
|
public enum eCodecCallType
|
|
{
|
|
None, Audio, Video
|
|
}
|
|
|
|
public enum eCodecCallStatus
|
|
{
|
|
Dialing, Established, Incoming
|
|
}
|
|
} |