mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
12 lines
356 B
C#
12 lines
356 B
C#
|
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; }
|
||
|
}
|
||
|
}
|