jellyfin/MediaBrowser.Controller/Entities/ISupportsPlaceHolders.cs
2014-03-03 00:11:03 -05:00

13 lines
360 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; }
}
}