#pragma warning disable CA1027 // Mark enums with FlagsAttribute
namespace Jellyfin.Data.Entities;
///
/// Provides the Value types for an .
///
public enum ItemValueType
{
///
/// Artists.
///
Artist = 0,
///
/// Album.
///
AlbumArtist = 1,
///
/// Genre.
///
Genre = 2,
///
/// Studios.
///
Studios = 3,
///
/// Tags.
///
Tags = 4,
///
/// InheritedTags.
///
InheritedTags = 6,
}