IHdHomerunChannelCommands.cs 274 B

1234567891011
  1. #pragma warning disable CS1591
  2. using System.Collections.Generic;
  3. namespace Emby.Server.Implementations.LiveTv.TunerHosts.HdHomerun
  4. {
  5. public interface IHdHomerunChannelCommands
  6. {
  7. IEnumerable<(string CommandName, string CommandValue)> GetCommands();
  8. }
  9. }