mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
21 lines
504 B
C#
21 lines
504 B
C#
using PepperDash.Core;
|
|
using System;
|
|
|
|
namespace PepperDash.Essentials.Core.Routing
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for IVideoSync
|
|
/// </summary>
|
|
public interface IVideoSync : IKeyed
|
|
{
|
|
/// <summary>
|
|
/// Gets whether or not video sync is detected
|
|
/// </summary>
|
|
bool VideoSyncDetected { get; }
|
|
|
|
/// <summary>
|
|
/// Event raised when video sync changes
|
|
/// </summary>
|
|
event EventHandler VideoSyncChanged;
|
|
}
|
|
}
|