diff options
| author | Cody Robibero <cody@robibe.ro> | 2022-11-27 07:53:18 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-27 07:53:18 -0700 |
| commit | d4bd72049b4609582fb57f63134bee58327bc0cc (patch) | |
| tree | cf9fd4473ee337f74de01ee9ed02e5b583f5c5b7 /MediaBrowser.Model/Drawing/ImageResolution.cs | |
| parent | c9f8b8a7c7b871938e10dbe94c51b2bd885a915c (diff) | |
| parent | b58d6e5b83c05dd61be165b6e8aa16f04b99cb96 (diff) | |
Merge pull request #8137 from negulici-r-barnabas/master
Diffstat (limited to 'MediaBrowser.Model/Drawing/ImageResolution.cs')
| -rw-r--r-- | MediaBrowser.Model/Drawing/ImageResolution.cs | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Drawing/ImageResolution.cs b/MediaBrowser.Model/Drawing/ImageResolution.cs new file mode 100644 index 000000000..34738b799 --- /dev/null +++ b/MediaBrowser.Model/Drawing/ImageResolution.cs @@ -0,0 +1,52 @@ +namespace MediaBrowser.Model.Drawing; + +/// <summary> +/// Enum ImageResolution. +/// </summary> +public enum ImageResolution +{ + /// <summary> + /// MatchSource. + /// </summary> + MatchSource = 0, + + /// <summary> + /// 144p. + /// </summary> + P144 = 1, + + /// <summary> + /// 240p. + /// </summary> + P240 = 2, + + /// <summary> + /// 360p. + /// </summary> + P360 = 3, + + /// <summary> + /// 480p. + /// </summary> + P480 = 4, + + /// <summary> + /// 720p. + /// </summary> + P720 = 5, + + /// <summary> + /// 1080p. + /// </summary> + P1080 = 6, + + /// <summary> + /// 1440p. + /// </summary> + P1440 = 7, + + /// <summary> + /// 2160p. + /// </summary> + P2160 = 8 +} |
