jellyfin/Jellyfin.Data/Enums/IndexingKind.cs

21 lines
410 B
C#
Raw Normal View History

2020-07-01 03:44:41 +02:00
namespace Jellyfin.Data.Enums
{
public enum IndexingKind
{
/// <summary>
/// Index by the premiere date.
/// </summary>
PremiereDate,
/// <summary>
/// Index by the production year.
/// </summary>
ProductionYear,
/// <summary>
/// Index by the community rating.
/// </summary>
CommunityRating
}
}