2020-08-22 19:56:24 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
{
|
|
|
|
public interface ISupportsPlaceHolders
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets a value indicating whether this instance is place holder.
|
|
|
|
/// </summary>
|
|
|
|
/// <value><c>true</c> if this instance is place holder; otherwise, <c>false</c>.</value>
|
|
|
|
bool IsPlaceHolder { get; }
|
|
|
|
}
|
|
|
|
}
|