diff options
| author | crobibero <cody@robibe.ro> | 2020-08-21 07:24:44 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-08-21 07:24:44 -0600 |
| commit | 07e7125d07b8440ce01cabc65edec38e2dee0bf2 (patch) | |
| tree | 8dcae2b903cd7b4571d24a6409d8e280dafd14b4 /MediaBrowser.Model/Session/PlayRequest.cs | |
| parent | cd49beb7add2ca2458b6a215bfcc258de1a68b91 (diff) | |
Fix dlna play to
Diffstat (limited to 'MediaBrowser.Model/Session/PlayRequest.cs')
| -rw-r--r-- | MediaBrowser.Model/Session/PlayRequest.cs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/MediaBrowser.Model/Session/PlayRequest.cs b/MediaBrowser.Model/Session/PlayRequest.cs index d57bed171..eeb25c2e8 100644 --- a/MediaBrowser.Model/Session/PlayRequest.cs +++ b/MediaBrowser.Model/Session/PlayRequest.cs @@ -15,21 +15,18 @@ namespace MediaBrowser.Model.Session /// 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 Guid[] 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> |
