aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Enums/ArtKind.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Enums/ArtKind.cs')
-rw-r--r--Jellyfin.Data/Enums/ArtKind.cs52
1 files changed, 30 insertions, 22 deletions
diff --git a/Jellyfin.Data/Enums/ArtKind.cs b/Jellyfin.Data/Enums/ArtKind.cs
index 52e33048e2..f7a73848c8 100644
--- a/Jellyfin.Data/Enums/ArtKind.cs
+++ b/Jellyfin.Data/Enums/ArtKind.cs
@@ -1,25 +1,33 @@
-//------------------------------------------------------------------------------
-// <auto-generated>
-// This code was generated from a template.
-//
-// Manual changes to this file may cause unexpected behavior in your application.
-// Manual changes to this file will be overwritten if the code is regenerated.
-//
-// Produced by Entity Framework Visual Editor
-// https://github.com/msawczyn/EFDesigner
-// </auto-generated>
-//------------------------------------------------------------------------------
-
-using System;
-
namespace Jellyfin.Data.Enums
{
- public enum ArtKind : Int32
- {
- Other,
- Poster,
- Banner,
- Thumbnail,
- Logo
- }
+ /// <summary>
+ /// An enum representing types of art.
+ /// </summary>
+ public enum ArtKind
+ {
+ /// <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
+ }
}