aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-03-26 01:06:36 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-03-26 01:06:36 -0400
commit2ffb9b91276e5112ce322fdb7f76340859ea2f38 (patch)
tree20cb511e83d00d3376363e1fa1b2838abc7ea335
parent62521eabc20cb73d7236b57a506181af277f3a9e (diff)
left-align dual line items
-rw-r--r--MediaBrowser.Api/Playback/StreamRequest.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Api/Playback/StreamRequest.cs b/MediaBrowser.Api/Playback/StreamRequest.cs
index d8b5c453f..a0b0a1a72 100644
--- a/MediaBrowser.Api/Playback/StreamRequest.cs
+++ b/MediaBrowser.Api/Playback/StreamRequest.cs
@@ -56,6 +56,12 @@ namespace MediaBrowser.Api.Playback
/// <value><c>true</c> if static; otherwise, <c>false</c>.</value>
[ApiMember(Name = "Static", Description = "Optional. If true, the original file will be streamed statically without any encoding. Use either no url extension or the original file extension. true/false", IsRequired = false, DataType = "bool", ParameterType = "query", Verb = "GET")]
public bool Static { get; set; }
+
+ /// <summary>
+ /// This is an xbox 360 param that is used with dlna. If true the item's image should be returned instead of audio or video.
+ /// No need to put this in api docs since it's dlna only
+ /// </summary>
+ public bool AlbumArt { get; set; }
}
public class VideoStreamRequest : StreamRequest