ISupportsBoxSetGrouping.cs 655 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Controller.Entities
  4. {
  5. /// <summary>
  6. /// Marker interface to denote a class that supports being hidden underneath it's boxset.
  7. /// Just about anything can be placed into a boxset,
  8. /// but movies should also only appear underneath and not outside separately (subject to configuration).
  9. /// </summary>
  10. public interface ISupportsBoxSetGrouping
  11. {
  12. /// <summary>
  13. /// Gets or sets the box set identifier list.
  14. /// </summary>
  15. /// <value>The box set identifier list.</value>
  16. List<Guid> BoxSetIdList { get; set; }
  17. }
  18. }