ISupportsBoxSetGrouping.cs 401 B

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