jellyfin/MediaBrowser.Controller/Channels/IChannelFactory.cs

14 lines
237 B
C#
Raw Normal View History

2014-05-12 01:02:28 +02:00
using System.Collections.Generic;
namespace MediaBrowser.Controller.Channels
{
public interface IChannelFactory
{
IEnumerable<IChannel> GetChannels();
}
public interface IFactoryChannel
{
}
2014-05-12 01:02:28 +02:00
}