feat(essentials): Adds interface and implementation to join calls

This commit is contained in:
Neil Dorin
2021-11-10 14:08:12 -07:00
parent 6dd882b1a0
commit dc53ce42e7
3 changed files with 35 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
using PepperDash.Essentials.Devices.Common.Codec;
namespace PepperDash.Essentials.Devices.Common.VideoCodec
{
public interface IJoinCalls
{
void JoinCall(CodecActiveCallItem activeCall);
void JoinAllCalls();
}
}