jellyfin/Emby.Server.Implementations/LiveTv/TunerHosts/HdHomerun/IHdHomerunChannelCommands.cs

12 lines
274 B
C#
Raw Normal View History

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