namespace Jellyfin.Data.Enums
{
///
/// An enum representing types of art.
///
public enum ArtKind
{
///
/// Another type of art, not covered by the other members.
///
Other = 0,
///
/// A poster.
///
Poster = 1,
///
/// A banner.
///
Banner = 2,
///
/// A thumbnail.
///
Thumbnail = 3,
///
/// A logo.
///
Logo = 4
}
}