aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/ImageType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Entities/ImageType.cs')
-rw-r--r--MediaBrowser.Model/Entities/ImageType.cs67
1 files changed, 54 insertions, 13 deletions
diff --git a/MediaBrowser.Model/Entities/ImageType.cs b/MediaBrowser.Model/Entities/ImageType.cs
index d9bb06cbc..aaae8dda3 100644
--- a/MediaBrowser.Model/Entities/ImageType.cs
+++ b/MediaBrowser.Model/Entities/ImageType.cs
@@ -1,13 +1,54 @@
-
-namespace MediaBrowser.Model.Entities
-{
- public enum ImageType
- {
- Primary,
- Art,
- Backdrop,
- Banner,
- Logo,
- Thumbnail
- }
-}
+
+namespace MediaBrowser.Model.Entities
+{
+ /// <summary>
+ /// Enum ImageType
+ /// </summary>
+ public enum ImageType
+ {
+ /// <summary>
+ /// The primary
+ /// </summary>
+ Primary,
+ /// <summary>
+ /// The art
+ /// </summary>
+ Art,
+ /// <summary>
+ /// The backdrop
+ /// </summary>
+ Backdrop,
+ /// <summary>
+ /// The banner
+ /// </summary>
+ Banner,
+ /// <summary>
+ /// The logo
+ /// </summary>
+ Logo,
+ /// <summary>
+ /// The thumb
+ /// </summary>
+ Thumb,
+ /// <summary>
+ /// The disc
+ /// </summary>
+ Disc,
+ /// <summary>
+ /// The box
+ /// </summary>
+ Box,
+ /// <summary>
+ /// The screenshot
+ /// </summary>
+ Screenshot,
+ /// <summary>
+ /// The menu
+ /// </summary>
+ Menu,
+ /// <summary>
+ /// The chapter image
+ /// </summary>
+ ChapterImage
+ }
+}