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

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