aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Drawing/ImageFormat.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Drawing/ImageFormat.cs')
-rw-r--r--MediaBrowser.Model/Drawing/ImageFormat.cs17
1 files changed, 11 insertions, 6 deletions
diff --git a/MediaBrowser.Model/Drawing/ImageFormat.cs b/MediaBrowser.Model/Drawing/ImageFormat.cs
index 511c16a4e..6a586f6e3 100644
--- a/MediaBrowser.Model/Drawing/ImageFormat.cs
+++ b/MediaBrowser.Model/Drawing/ImageFormat.cs
@@ -6,28 +6,33 @@ namespace MediaBrowser.Model.Drawing
public enum ImageFormat
{
/// <summary>
- /// The BMP.
+ /// BMP format.
/// </summary>
Bmp,
/// <summary>
- /// The GIF.
+ /// GIF format.
/// </summary>
Gif,
/// <summary>
- /// The JPG.
+ /// JPG format.
/// </summary>
Jpg,
/// <summary>
- /// The PNG.
+ /// PNG format.
/// </summary>
Png,
/// <summary>
- /// The webp.
+ /// WEBP format.
/// </summary>
- Webp
+ Webp,
+
+ /// <summary>
+ /// SVG format.
+ /// </summary>
+ Svg,
}
}