ISupportsPlaceHolders.cs 356 B

1234567891011
  1. namespace MediaBrowser.Controller.Entities
  2. {
  3. public interface ISupportsPlaceHolders
  4. {
  5. /// <summary>
  6. /// Gets a value indicating whether this instance is place holder.
  7. /// </summary>
  8. /// <value><c>true</c> if this instance is place holder; otherwise, <c>false</c>.</value>
  9. bool IsPlaceHolder { get; }
  10. }
  11. }