aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dto/ImageOptions.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-02 11:32:11 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-02 11:32:11 -0400
commit7dae0069d65883d8b2a5ba635991354eb395b7c6 (patch)
tree21c7b523f888f6bbec528534a6d521473bab4dbd /MediaBrowser.Model/Dto/ImageOptions.cs
parentf87454336e0bd1f5cb21353a2da116eacfd1adb9 (diff)
added new image params & GameSystem constants
Diffstat (limited to 'MediaBrowser.Model/Dto/ImageOptions.cs')
-rw-r--r--MediaBrowser.Model/Dto/ImageOptions.cs27
1 files changed, 25 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Dto/ImageOptions.cs b/MediaBrowser.Model/Dto/ImageOptions.cs
index c5c89b0b23..7fe162ff99 100644
--- a/MediaBrowser.Model/Dto/ImageOptions.cs
+++ b/MediaBrowser.Model/Dto/ImageOptions.cs
@@ -70,10 +70,33 @@ namespace MediaBrowser.Model.Dto
/// <value><c>true</c> if [enable image enhancers]; otherwise, <c>false</c>.</value>
public bool EnableImageEnhancers { get; set; }
+ /// <summary>
+ /// Gets or sets the format.
+ /// </summary>
+ /// <value>The format.</value>
public ImageOutputFormat Format { get; set; }
- public ImageOverlay? Indicator { get; set; }
-
+ /// <summary>
+ /// Gets or sets a value indicating whether [add played indicator].
+ /// </summary>
+ /// <value><c>true</c> if [add played indicator]; otherwise, <c>false</c>.</value>
+ public bool AddPlayedIndicator { get; set; }
+
+ /// <summary>
+ /// Gets or sets the percent played.
+ /// </summary>
+ /// <value>The percent played.</value>
+ public int? PercentPlayed { get; set; }
+
+ /// <summary>
+ /// Gets or sets the color of the background.
+ /// </summary>
+ /// <value>The color of the background.</value>
+ public string BackgroundColor { get; set; }
+
+ /// <summary>
+ /// Initializes a new instance of the <see cref="ImageOptions" /> class.
+ /// </summary>
public ImageOptions()
{
EnableImageEnhancers = true;