aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/ImageType.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-06-03 12:24:04 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-06-03 12:24:04 -0400
commit53afb1e1e54a383f9fdda9b9c5fb21a6af50962e (patch)
tree672afe83be8e110aa8d2f96d5e30cecdc1894b5f /MediaBrowser.Model/Entities/ImageType.cs
parent05acd63f8f0019e46ea57ab895bf54372c14161b (diff)
add images table
Diffstat (limited to 'MediaBrowser.Model/Entities/ImageType.cs')
-rw-r--r--MediaBrowser.Model/Entities/ImageType.cs24
1 files changed, 12 insertions, 12 deletions
diff --git a/MediaBrowser.Model/Entities/ImageType.cs b/MediaBrowser.Model/Entities/ImageType.cs
index 18097abb4..6e0ba717f 100644
--- a/MediaBrowser.Model/Entities/ImageType.cs
+++ b/MediaBrowser.Model/Entities/ImageType.cs
@@ -9,50 +9,50 @@ namespace MediaBrowser.Model.Entities
/// <summary>
/// The primary
/// </summary>
- Primary,
+ Primary = 0,
/// <summary>
/// The art
/// </summary>
- Art,
+ Art = 1,
/// <summary>
/// The backdrop
/// </summary>
- Backdrop,
+ Backdrop = 2,
/// <summary>
/// The banner
/// </summary>
- Banner,
+ Banner = 3,
/// <summary>
/// The logo
/// </summary>
- Logo,
+ Logo = 4,
/// <summary>
/// The thumb
/// </summary>
- Thumb,
+ Thumb = 5,
/// <summary>
/// The disc
/// </summary>
- Disc,
+ Disc = 6,
/// <summary>
/// The box
/// </summary>
- Box,
+ Box = 7,
/// <summary>
/// The screenshot
/// </summary>
- Screenshot,
+ Screenshot = 8,
/// <summary>
/// The menu
/// </summary>
- Menu,
+ Menu = 9,
/// <summary>
/// The chapter image
/// </summary>
- Chapter,
+ Chapter = 10,
/// <summary>
/// The box rear
/// </summary>
- BoxRear
+ BoxRear = 11
}
}