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