jellyfin/Jellyfin.Data/Enums/IndexingKind.cs
2020-07-17 20:03:17 -04:00

21 lines
422 B
C#

namespace Jellyfin.Data.Enums
{
public enum IndexingKind
{
/// <summary>
/// Index by the premiere date.
/// </summary>
PremiereDate = 0,
/// <summary>
/// Index by the production year.
/// </summary>
ProductionYear = 1,
/// <summary>
/// Index by the community rating.
/// </summary>
CommunityRating = 2
}
}