namespace MediaBrowser.Model.Dto { public class SubtitleDownloadOptions { /// /// Gets or sets the item identifier. /// /// The item identifier. public string ItemId { get; set; } /// /// Gets or sets the media source identifier. /// /// The media source identifier. public string MediaSourceId { get; set; } /// /// Gets or sets the index of the stream. /// /// The index of the stream. public int StreamIndex { get; set; } /// /// Gets or sets the format. /// /// The format. public string Format { get; set; } } }