diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2019-08-15 21:01:44 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-15 21:01:44 -0700 |
| commit | bb0454506849ee65dae2881bbbaf1ea8cb2f1d97 (patch) | |
| tree | 7b06574894fcccb3446363d2f39a8ccbd52ba4d0 /MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs | |
| parent | 685e9e4f58c2e00a0157098a2309b2cb97cb2f14 (diff) | |
| parent | 838e5d05d51c4c171c07d512f741304a6dc58f24 (diff) | |
Merge pull request #1614 from Bond-009/docs2
Document all public/internal members of Emby.Drawing
Diffstat (limited to 'MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs')
| -rw-r--r-- | MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs b/MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs index db432f500..29addf6e6 100644 --- a/MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs +++ b/MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs @@ -1,4 +1,5 @@ using System; +using System.Collections.Generic; using System.IO; using System.Linq; using MediaBrowser.Controller.Entities; @@ -33,9 +34,9 @@ namespace MediaBrowser.Controller.Drawing public int Quality { get; set; } - public IImageEnhancer[] Enhancers { get; set; } + public IReadOnlyCollection<IImageEnhancer> Enhancers { get; set; } - public ImageFormat[] SupportedOutputFormats { get; set; } + public IReadOnlyCollection<ImageFormat> SupportedOutputFormats { get; set; } public bool AddPlayedIndicator { get; set; } |
