namespace Jellyfin.Data.Enums
{
///
/// An enum representing a type of indexing in a user's display preferences.
///
public enum IndexingKind
{
///
/// Index by the premiere date.
///
PremiereDate = 0,
///
/// Index by the production year.
///
ProductionYear = 1,
///
/// Index by the community rating.
///
CommunityRating = 2
}
}