namespace Jellyfin.Data.Enums
{
///
/// An enum representing the type of view for a library or collection.
///
public enum ViewType
{
///
/// Shows banners.
///
Banner = 0,
///
/// Shows a list of content.
///
List = 1,
///
/// Shows poster artwork.
///
Poster = 2,
///
/// Shows poster artwork with a card containing the name and year.
///
PosterCard = 3,
///
/// Shows a thumbnail.
///
Thumb = 4,
///
/// Shows a thumbnail with a card containing the name and year.
///
ThumbCard = 5
}
}