#pragma warning disable CS1591
namespace Jellyfin.Data.Enums
{
public enum IndexingKind
{
///
/// Index by the premiere date.
///
PremiereDate = 0,
///
/// Index by the production year.
///
ProductionYear = 1,
///
/// Index by the community rating.
///
CommunityRating = 2
}
}