Pushing missing changes

This commit is contained in:
LukePulverenti
2013-02-20 20:33:05 -05:00
parent 845554722e
commit 767cdc1f6f
924 changed files with 103121 additions and 18677 deletions

View File

@@ -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
}
}