diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-02-07 23:45:21 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-07 23:45:21 +0900 |
| commit | 75d6545145eee8112f03f82ebb4d8c1b414aa192 (patch) | |
| tree | 4a82bcdb8ace617b8d0feba19aec8a9f2a629c5b /MediaBrowser.Model/Entities/ImageType.cs | |
| parent | 1ae9ed6e2aefb323f9959f9ed7a0c7950dd630c6 (diff) | |
| parent | f47ad85011a1251c3fda8a213c0b96dcf46d5e05 (diff) | |
Merge pull request #2373 from Bond-009/warn14
Fix some warnings in MediaBrowser.Model
Diffstat (limited to 'MediaBrowser.Model/Entities/ImageType.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/ImageType.cs | 36 |
1 files changed, 23 insertions, 13 deletions
diff --git a/MediaBrowser.Model/Entities/ImageType.cs b/MediaBrowser.Model/Entities/ImageType.cs index ce3560e78..0f8208090 100644 --- a/MediaBrowser.Model/Entities/ImageType.cs +++ b/MediaBrowser.Model/Entities/ImageType.cs @@ -1,56 +1,66 @@ namespace MediaBrowser.Model.Entities { /// <summary> - /// Enum ImageType + /// Enum ImageType. /// </summary> public enum ImageType { /// <summary> - /// The primary + /// The primary. /// </summary> Primary = 0, + /// <summary> - /// The art + /// The art. /// </summary> Art = 1, + /// <summary> - /// The backdrop + /// The backdrop. /// </summary> Backdrop = 2, + /// <summary> - /// The banner + /// The banner. /// </summary> Banner = 3, + /// <summary> - /// The logo + /// The logo. /// </summary> Logo = 4, + /// <summary> - /// The thumb + /// The thumb. /// </summary> Thumb = 5, + /// <summary> - /// The disc + /// The disc. /// </summary> Disc = 6, + /// <summary> - /// The box + /// The box. /// </summary> Box = 7, /// <summary> - /// The screenshot + /// The screenshot. /// </summary> Screenshot = 8, + /// <summary> - /// The menu + /// The menu. /// </summary> Menu = 9, + /// <summary> - /// The chapter image + /// The chapter image. /// </summary> Chapter = 10, + /// <summary> - /// The box rear + /// The box rear. /// </summary> BoxRear = 11 } |
