ISupportsPlaceHolders.cs 388 B

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