mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-28 03:45:01 +00:00
22 lines
470 B
C#
22 lines
470 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
using Crestron.SimplSharpPro;
|
|
using Crestron.SimplSharpPro.DM;
|
|
|
|
using PepperDash.Core;
|
|
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
|
|
/// <summary>
|
|
/// Defines the contract for IRoutingHasVideoInputSyncFeedbacks
|
|
/// </summary>
|
|
public interface IRoutingHasVideoInputSyncFeedbacks
|
|
{
|
|
FeedbackCollection<BoolFeedback> VideoInputSyncFeedbacks { get; }
|
|
}
|
|
} |