namespace Jellyfin.Data.Enums
{
    /// 
    /// An enum representing an unrated item.
    /// 
    public enum UnratedItem
    {
        /// 
        /// 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
    }
}