Files
Essentials/src/PepperDash.Essentials.Core/Routing/IInputSync.cs
2024-05-23 08:38:50 -05:00

17 lines
331 B
C#

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;
}
}