@@ -1,17 +1,53 @@
-#pragma warning disable CS1591
-
namespace Jellyfin.Data.Enums
{
+ /// <summary>
+ /// An enum representing an unrated item.
+ /// </summary>
public enum UnratedItem
- Movie,
- Trailer,
- Series,
- Music,
- Book,
- LiveTvChannel,
- LiveTvProgram,
- ChannelContent,
- Other
+ /// A movie.
+ Movie = 0,
+
+ /// A trailer.
+ Trailer = 1,
+ /// A series.
+ Series = 2,
+ /// Music.
+ Music = 3,
+ /// A book.
+ Book = 4,
+ /// A live TV channel
+ LiveTvChannel = 5,
+ /// A live TV program.
+ LiveTvProgram = 6,
+ /// Channel content.
+ ChannelContent = 7,
+ /// Another type, not covered by the other fields.
+ Other = 8
}