17 lines
460 B
C#
17 lines
460 B
C#
// <copyright file="IDisableMediaSourceDisplay.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
{
|
|
/// <summary>
|
|
/// Disable media source display.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// <see cref="Channel"/> can inherit this interface to disable being displayed.
|
|
/// </remarks>
|
|
public interface IDisableMediaSourceDisplay
|
|
{
|
|
}
|
|
}
|