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