2020-04-05 16:10:56 +00:00
|
|
|
#nullable disable
|
2020-02-04 00:49:27 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 20:02:23 +00:00
|
|
|
using System;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Session
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Class PlayRequest.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public class PlayRequest
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the item ids.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The item ids.</value>
|
|
|
|
public Guid[] ItemIds { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Gets or sets the start position ticks that the first item should be played at.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
/// <value>The start position ticks.</value>
|
|
|
|
public long? StartPositionTicks { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the play command.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The play command.</value>
|
|
|
|
public PlayCommand PlayCommand { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the controlling user identifier.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The controlling user identifier.</value>
|
|
|
|
public Guid ControllingUserId { get; set; }
|
|
|
|
|
|
|
|
public int? SubtitleStreamIndex { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public int? AudioStreamIndex { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public string MediaSourceId { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public int? StartIndex { get; set; }
|
|
|
|
}
|
2019-01-13 19:31:15 +00:00
|
|
|
}
|