SubtitleDownloadOptions.cs 843 B

1234567891011121314151617181920212223242526272829
  1. namespace MediaBrowser.Model.Dto
  2. {
  3. public class SubtitleDownloadOptions
  4. {
  5. /// <summary>
  6. /// Gets or sets the item identifier.
  7. /// </summary>
  8. /// <value>The item identifier.</value>
  9. public string ItemId { get; set; }
  10. /// <summary>
  11. /// Gets or sets the media source identifier.
  12. /// </summary>
  13. /// <value>The media source identifier.</value>
  14. public string MediaSourceId { get; set; }
  15. /// <summary>
  16. /// Gets or sets the index of the stream.
  17. /// </summary>
  18. /// <value>The index of the stream.</value>
  19. public int StreamIndex { get; set; }
  20. /// <summary>
  21. /// Gets or sets the format.
  22. /// </summary>
  23. /// <value>The format.</value>
  24. public string Format { get; set; }
  25. }
  26. }