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