namespace Jellyfin.Data.Enums
{
    /// 
    /// An enum representing the type of view for a library or collection.
    /// 
    public enum ViewType
    {
        /// 
        /// Shows albums.
        /// 
        Albums = 0,
        /// 
        /// Shows album artists.
        /// 
        AlbumArtists = 1,
        /// 
        /// Shows artists.
        /// 
        Artists = 2,
        /// 
        /// Shows channels.
        /// 
        Channels = 3,
        /// 
        /// Shows collections.
        /// 
        Collections = 4,
        /// 
        /// Shows episodes.
        /// 
        Episodes = 5,
        /// 
        /// Shows favorites.
        /// 
        Favorites = 6,
        /// 
        /// Shows genres.
        /// 
        Genres = 7,
        /// 
        /// Shows guide.
        /// 
        Guide = 8,
        /// 
        /// Shows movies.
        /// 
        Movies = 9,
        /// 
        /// Shows networks.
        /// 
        Networks = 10,
        /// 
        /// Shows playlists.
        /// 
        Playlists = 11,
        /// 
        /// Shows programs.
        /// 
        Programs = 12,
        /// 
        /// Shows recordings.
        /// 
        Recordings = 13,
        /// 
        /// Shows schedule.
        /// 
        Schedule = 14,
        /// 
        /// Shows series.
        /// 
        Series = 15,
        /// 
        /// Shows shows.
        /// 
        Shows = 16,
        /// 
        /// Shows songs.
        /// 
        Songs = 17,
        /// 
        /// Shows songs.
        /// 
        Suggestions = 18,
        /// 
        /// Shows trailers.
        /// 
        Trailers = 19,
        /// 
        /// Shows upcoming.
        /// 
        Upcoming = 20
    }
}