IChannelFactory.cs 178 B

123456789
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Controller.Channels
  3. {
  4. public interface IChannelFactory
  5. {
  6. IEnumerable<IChannel> GetChannels();
  7. }
  8. }