diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-20 20:33:05 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-20 20:33:05 -0500 |
| commit | 767cdc1f6f6a63ce997fc9476911e2c361f9d402 (patch) | |
| tree | 49add55976f895441167c66cfa95e5c7688d18ce /MediaBrowser.Model/Entities/ImageType.cs | |
| parent | 845554722efaed872948a9e0f7202e3ef52f1b6e (diff) | |
Pushing missing changes
Diffstat (limited to 'MediaBrowser.Model/Entities/ImageType.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/ImageType.cs | 67 |
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 + } +} |
