2014-05-11 19:02:28 -04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IChannelFactory
|
|
|
|
|
|
{
|
|
|
|
|
|
IEnumerable<IChannel> GetChannels();
|
|
|
|
|
|
}
|
2014-07-18 15:07:28 -04:00
|
|
|
|
|
|
|
|
|
|
public interface IFactoryChannel
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2014-05-11 19:02:28 -04:00
|
|
|
|
}
|