BoxSet.cs 879 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using MediaBrowser.Model.Entities;
  3. using System.Collections.Generic;
  4. namespace MediaBrowser.Controller.Entities.Movies
  5. {
  6. /// <summary>
  7. /// Class BoxSet
  8. /// </summary>
  9. public class BoxSet : Folder, IHasTrailers, IHasTags
  10. {
  11. public BoxSet()
  12. {
  13. RemoteTrailers = new List<MediaUrl>();
  14. LocalTrailerIds = new List<Guid>();
  15. Tags = new List<string>();
  16. }
  17. public List<Guid> LocalTrailerIds { get; set; }
  18. /// <summary>
  19. /// Gets or sets the remote trailers.
  20. /// </summary>
  21. /// <value>The remote trailers.</value>
  22. public List<MediaUrl> RemoteTrailers { get; set; }
  23. /// <summary>
  24. /// Gets or sets the tags.
  25. /// </summary>
  26. /// <value>The tags.</value>
  27. public List<string> Tags { get; set; }
  28. }
  29. }