mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-04 07:14:58 +00:00
19 lines
477 B
C#
19 lines
477 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using PepperDash.Essentials.Core;
|
|
|
|
namespace PepperDash.Essentials.DM
|
|
{
|
|
public interface IBasicVideoStatusFeedbacks
|
|
{
|
|
BoolFeedback HasVideoStatusFeedback { get; }
|
|
BoolFeedback HdcpActiveFeedback { get; }
|
|
StringFeedback HdcpStateFeedback { get; }
|
|
StringFeedback VideoResolutionFeedback { get; }
|
|
BoolFeedback VideoSyncFeedback { get; }
|
|
}
|
|
} |