diff options
| author | stefan <stefan@hegedues.at> | 2018-09-12 19:26:21 +0200 |
|---|---|---|
| committer | stefan <stefan@hegedues.at> | 2018-09-12 19:26:21 +0200 |
| commit | 48facb797ed912e4ea6b04b17d1ff190ac2daac4 (patch) | |
| tree | 8dae77a31670a888d733484cb17dd4077d5444e8 /MediaBrowser.Model/Session/PlayRequest.cs | |
| parent | c32d8656382a0eacb301692e0084377fc433ae9b (diff) | |
Update to 3.5.2 and .net core 2.1
Diffstat (limited to 'MediaBrowser.Model/Session/PlayRequest.cs')
| -rw-r--r-- | MediaBrowser.Model/Session/PlayRequest.cs | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/MediaBrowser.Model/Session/PlayRequest.cs b/MediaBrowser.Model/Session/PlayRequest.cs deleted file mode 100644 index 3477f2e57..000000000 --- a/MediaBrowser.Model/Session/PlayRequest.cs +++ /dev/null @@ -1,42 +0,0 @@ -using MediaBrowser.Model.Services; - -namespace MediaBrowser.Model.Session -{ - /// <summary> - /// Class PlayRequest - /// </summary> - public class PlayRequest - { - /// <summary> - /// Gets or sets the item ids. - /// </summary> - /// <value>The item ids.</value> - [ApiMember(Name = "ItemIds", Description = "The ids of the items to play, comma delimited", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "POST", AllowMultiple = true)] - public string[] ItemIds { get; set; } - - /// <summary> - /// Gets or sets the start position ticks that the first item should be played at - /// </summary> - /// <value>The start position ticks.</value> - [ApiMember(Name = "StartPositionTicks", Description = "The starting position of the first item.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "POST")] - public long? StartPositionTicks { get; set; } - - /// <summary> - /// Gets or sets the play command. - /// </summary> - /// <value>The play command.</value> - [ApiMember(Name = "PlayCommand", Description = "The type of play command to issue (PlayNow, PlayNext, PlayLast). Clients who have not yet implemented play next and play last may play now.", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "POST")] - public PlayCommand PlayCommand { get; set; } - - /// <summary> - /// Gets or sets the controlling user identifier. - /// </summary> - /// <value>The controlling user identifier.</value> - public string ControllingUserId { get; set; } - - public int? SubtitleStreamIndex { get; set; } - public int? AudioStreamIndex { get; set; } - public string MediaSourceId { get; set; } - public int? StartIndex { get; set; } - } -}
\ No newline at end of file |
