@@ -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
+ /// Another type of art, not covered by the other members.
+ Other = 0,
+
+ /// A poster.
+ Poster = 1,
+ /// A banner.
+ Banner = 2,
+ /// A thumbnail.
+ Thumbnail = 3,
+ /// A logo.
+ Logo = 4
}