namespace Jellyfin.Data.Enums { public enum IndexingKind { /// /// Index by the premiere date. /// PremiereDate, /// /// Index by the production year. /// ProductionYear, /// /// Index by the community rating. /// CommunityRating } }