diff options
| author | Patrick Barron <barronpm@gmail.com> | 2020-08-31 23:04:05 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2020-08-31 23:04:49 -0400 |
| commit | 367aa26ab5ac48747df77938dfc324e4e3a0e285 (patch) | |
| tree | 41b9ff21cd0c31e5fb8e76c2c3f9b181c6942d1a | |
| parent | 43a81366a623b54668ceda13d5d47740e39c9855 (diff) | |
Document ArtKind.cs
| -rw-r--r-- | Jellyfin.Data/Enums/ArtKind.cs | 34 |
1 files changed, 27 insertions, 7 deletions
diff --git a/Jellyfin.Data/Enums/ArtKind.cs b/Jellyfin.Data/Enums/ArtKind.cs index 71b4db6f2..f7a73848c 100644 --- a/Jellyfin.Data/Enums/ArtKind.cs +++ b/Jellyfin.Data/Enums/ArtKind.cs @@ -1,13 +1,33 @@ -#pragma warning disable CS1591 - namespace Jellyfin.Data.Enums { + /// <summary> + /// An enum representing types of art. + /// </summary> public enum ArtKind { - Other, - Poster, - Banner, - Thumbnail, - Logo + /// <summary> + /// Another type of art, not covered by the other members. + /// </summary> + Other = 0, + + /// <summary> + /// A poster. + /// </summary> + Poster = 1, + + /// <summary> + /// A banner. + /// </summary> + Banner = 2, + + /// <summary> + /// A thumbnail. + /// </summary> + Thumbnail = 3, + + /// <summary> + /// A logo. + /// </summary> + Logo = 4 } } |
