IHasTrailers.cs 797 B

12345678910111213141516171819202122232425262728
  1. using MediaBrowser.Model.Entities;
  2. using System;
  3. using System.Collections.Generic;
  4. namespace MediaBrowser.Controller.Entities
  5. {
  6. public interface IHasTrailers : IHasProviderIds
  7. {
  8. /// <summary>
  9. /// Gets or sets the remote trailers.
  10. /// </summary>
  11. /// <value>The remote trailers.</value>
  12. List<MediaUrl> RemoteTrailers { get; set; }
  13. /// <summary>
  14. /// Gets or sets the local trailer ids.
  15. /// </summary>
  16. /// <value>The local trailer ids.</value>
  17. List<Guid> LocalTrailerIds { get; set; }
  18. List<Guid> RemoteTrailerIds { get; set; }
  19. /// <summary>
  20. /// Gets the trailer ids.
  21. /// </summary>
  22. /// <returns>List&lt;Guid&gt;.</returns>
  23. List<Guid> GetTrailerIds();
  24. }
  25. }