mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-20 04:18:51 -07:00
23 lines
454 B
C#
23 lines
454 B
C#
#pragma warning disable CS1591
|
|
|
|
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
|
|
}
|
|
}
|