aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/IChannelFactory.cs
blob: c7ed92586689d7e00f31906bb7e24e7bbd01ca6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Collections.Generic;

namespace MediaBrowser.Controller.Channels
{
    public interface IChannelFactory
    {
        IEnumerable<IChannel> GetChannels();
    }

    public interface IFactoryChannel
    {
        
    }
}