mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-28 20:04:56 +00:00
20 lines
412 B
C#
20 lines
412 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
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for IVideoSync
|
|
/// </summary>
|
|
public interface IVideoSync : IKeyed
|
|
{
|
|
bool VideoSyncDetected { get; }
|
|
|
|
event EventHandler VideoSyncChanged;
|
|
}
|
|
}
|