blob: 2507c8ee65bc6a0d6b46f16d5c0f2cffc155c3d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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; }
}
}
|