2021-06-06 18:11:51 +02:00
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
2021-05-13 07:32:02 -06:00
|
|
|
|
{
|
2021-06-06 09:16:41 -06:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Disable media source display.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <remarks>
|
|
|
|
|
|
/// <see cref="Channel"/> can inherit this interface to disable being displayed.
|
|
|
|
|
|
/// </remarks>
|
2021-05-13 07:32:02 -06:00
|
|
|
|
public interface IDisableMediaSourceDisplay
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
2021-06-06 18:11:51 +02:00
|
|
|
|
}
|