aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Drawing/ImageResolution.cs
diff options
context:
space:
mode:
authorNegulici-R. Barnabas <negulici.r.barnabas@outlook.com>2022-07-18 17:50:52 +0300
committerNegulici-R. Barnabas <negulici.r.barnabas@outlook.com>2022-07-18 17:50:52 +0300
commit12ec0e285ddf8a5360859b5c49bb4b7b916569d2 (patch)
treef51cc944daed6731f73eb5560c3a09c3c959ea83 /MediaBrowser.Model/Drawing/ImageResolution.cs
parentc2902dd1081acd96cf34682ec8a4812ab6146044 (diff)
Chapter Images:
- chapter image extraction intervals, limit count and resolutions can be set by the user from the server general settings;
Diffstat (limited to 'MediaBrowser.Model/Drawing/ImageResolution.cs')
-rw-r--r--MediaBrowser.Model/Drawing/ImageResolution.cs43
1 files changed, 43 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Drawing/ImageResolution.cs b/MediaBrowser.Model/Drawing/ImageResolution.cs
new file mode 100644
index 000000000..7e1c54f5a
--- /dev/null
+++ b/MediaBrowser.Model/Drawing/ImageResolution.cs
@@ -0,0 +1,43 @@
+namespace MediaBrowser.Model.Drawing
+{
+ /// <summary>
+ /// Enum ImageResolution.
+ /// </summary>
+ public enum ImageResolution
+ {
+ /// <summary>
+ /// 240p.
+ /// </summary>
+ P240,
+
+ /// <summary>
+ /// 360p.
+ /// </summary>
+ P360,
+
+ /// <summary>
+ /// 480p.
+ /// </summary>
+ P480,
+
+ /// <summary>
+ /// 720p.
+ /// </summary>
+ P720,
+
+ /// <summary>
+ /// 1080p.
+ /// </summary>
+ P1080,
+
+ /// <summary>
+ /// 1440p.
+ /// </summary>
+ P1440,
+
+ /// <summary>
+ /// 2160p.
+ /// </summary>
+ P2160
+ }
+}