2021-10-06 09:30:45 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Emby.Server.Implementations.LiveTv.TunerHosts.HdHomerun
|
|
|
|
{
|
|
|
|
public interface IHdHomerunChannelCommands
|
|
|
|
{
|
2021-12-24 21:18:24 +00:00
|
|
|
IEnumerable<(string CommandName, string CommandValue)> GetCommands();
|
2021-10-06 09:30:45 +00:00
|
|
|
}
|
|
|
|
}
|