mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-10 10:15:01 +00:00
fix: remove generics from matrix routing interfaces
This commit is contained in:
@@ -1,26 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace PepperDash.Essentials.Core.Routing
|
||||
namespace PepperDash.Essentials.Core.Routing
|
||||
{
|
||||
public interface IRoutingInputSlot: IRoutingSlot, IOnline, IVideoSync
|
||||
{
|
||||
string TxDeviceKey { get; }
|
||||
}
|
||||
|
||||
public abstract class RoutingInputSlotBase : IRoutingInputSlot
|
||||
{
|
||||
public abstract string TxDeviceKey { get; }
|
||||
public abstract int SlotNumber { get; }
|
||||
public abstract eRoutingSignalType SupportedSignalTypes { get; }
|
||||
public abstract string Name { get; }
|
||||
public abstract BoolFeedback IsOnline { get; }
|
||||
public abstract bool VideoSyncDetected { get; }
|
||||
public abstract string Key { get; }
|
||||
|
||||
public abstract event EventHandler VideoSyncChanged;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user