wip: update XML comments

This commit is contained in:
Erik Meyer
2026-01-28 15:42:44 -05:00
parent 92059aa43c
commit ca77506108
27 changed files with 625 additions and 33 deletions

View File

@@ -12,8 +12,14 @@ namespace PepperDash.Essentials.Core.Routing
/// </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;
}
}