diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-01 13:26:31 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-01 13:26:31 -0500 |
| commit | b9d17c9bc765a0c59d81db6277300a6860bf8421 (patch) | |
| tree | 8a7c538cb73c27b7e06f0055ce4f0bb45175e7aa /MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs | |
| parent | 88b638fbd69ed99bde7065f66af433b015977cb7 (diff) | |
add more methods to file system interface
Diffstat (limited to 'MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs')
| -rw-r--r-- | MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs b/MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs index 506d6fd3d..93293b34d 100644 --- a/MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs +++ b/MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs @@ -37,8 +37,10 @@ namespace MediaBrowser.Controller.Drawing public bool AddPlayedIndicator { get; set; } - public int? PercentPlayed { get; set; } + public int? UnplayedCount { get; set; } + public double? PercentPlayed { get; set; } + public string BackgroundColor { get; set; } public bool HasDefaultOptions() @@ -56,6 +58,7 @@ namespace MediaBrowser.Controller.Drawing IsOutputFormatDefault && !AddPlayedIndicator && !PercentPlayed.HasValue && + !UnplayedCount.HasValue && string.IsNullOrEmpty(BackgroundColor); } |
