IChannelFactory.cs 237 B

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