mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-11 10:45:00 +00:00
feat: add IVideoSync interface & implement on IRoutingInputSlot
This commit is contained in:
16
src/PepperDash.Essentials.Core/Routing/IInputSync.cs
Normal file
16
src/PepperDash.Essentials.Core/Routing/IInputSync.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using PepperDash.Core;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace PepperDash.Essentials.Core.Routing
|
||||
{
|
||||
public interface IVideoSync: IKeyed
|
||||
{
|
||||
bool VideoSyncDetected { get; }
|
||||
|
||||
event EventHandler VideoSyncChanged;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user