2
0

ISupportsBoxSetGrouping.cs 406 B

123456789101112
  1. 
  2. namespace MediaBrowser.Controller.Entities
  3. {
  4. /// <summary>
  5. /// Marker interface to denote a class that supports being hidden underneath it's boxset.
  6. /// Just about anything can be placed into a boxset,
  7. /// but movies should also only appear underneath and not outside separately (subject to configuration).
  8. /// </summary>
  9. public interface ISupportsBoxSetGrouping
  10. {
  11. }
  12. }