diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-02 11:32:11 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-02 11:32:11 -0400 |
| commit | 7dae0069d65883d8b2a5ba635991354eb395b7c6 (patch) | |
| tree | 21c7b523f888f6bbec528534a6d521473bab4dbd /MediaBrowser.Model/Dto/ImageOptions.cs | |
| parent | f87454336e0bd1f5cb21353a2da116eacfd1adb9 (diff) | |
added new image params & GameSystem constants
Diffstat (limited to 'MediaBrowser.Model/Dto/ImageOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Dto/ImageOptions.cs | 27 |
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; |
