IHasThemeMedia.cs 587 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Controller.Entities
  4. {
  5. /// <summary>
  6. /// Interface IHasThemeMedia
  7. /// </summary>
  8. public interface IHasThemeMedia
  9. {
  10. /// <summary>
  11. /// Gets or sets the theme song ids.
  12. /// </summary>
  13. /// <value>The theme song ids.</value>
  14. List<Guid> ThemeSongIds { get; set; }
  15. /// <summary>
  16. /// Gets or sets the theme video ids.
  17. /// </summary>
  18. /// <value>The theme video ids.</value>
  19. List<Guid> ThemeVideoIds { get; set; }
  20. }
  21. }