diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-02-07 23:45:21 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-07 23:45:21 +0900 |
| commit | 75d6545145eee8112f03f82ebb4d8c1b414aa192 (patch) | |
| tree | 4a82bcdb8ace617b8d0feba19aec8a9f2a629c5b /MediaBrowser.Model/Drawing/ImageFormat.cs | |
| parent | 1ae9ed6e2aefb323f9959f9ed7a0c7950dd630c6 (diff) | |
| parent | f47ad85011a1251c3fda8a213c0b96dcf46d5e05 (diff) | |
Merge pull request #2373 from Bond-009/warn14
Fix some warnings in MediaBrowser.Model
Diffstat (limited to 'MediaBrowser.Model/Drawing/ImageFormat.cs')
| -rw-r--r-- | MediaBrowser.Model/Drawing/ImageFormat.cs | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/MediaBrowser.Model/Drawing/ImageFormat.cs b/MediaBrowser.Model/Drawing/ImageFormat.cs index 3639c1594..511c16a4e 100644 --- a/MediaBrowser.Model/Drawing/ImageFormat.cs +++ b/MediaBrowser.Model/Drawing/ImageFormat.cs @@ -1,28 +1,32 @@ namespace MediaBrowser.Model.Drawing { /// <summary> - /// Enum ImageOutputFormat + /// Enum ImageOutputFormat. /// </summary> public enum ImageFormat { /// <summary> - /// The BMP + /// The BMP. /// </summary> Bmp, + /// <summary> - /// The GIF + /// The GIF. /// </summary> Gif, + /// <summary> - /// The JPG + /// The JPG. /// </summary> Jpg, + /// <summary> - /// The PNG + /// The PNG. /// </summary> Png, + /// <summary> - /// The webp + /// The webp. /// </summary> Webp } |
