jellyfin/Jellyfin.Data/Enums/IndexingKind.cs

24 lines
540 B
C#
Raw Normal View History

2020-09-01 05:08:34 +02:00
namespace Jellyfin.Data.Enums
2020-07-01 03:44:41 +02:00
{
2020-09-01 05:08:34 +02:00
/// <summary>
/// An enum representing a type of indexing in a user's display preferences.
/// </summary>
2020-07-01 03:44:41 +02:00
public enum IndexingKind
{
/// <summary>
/// Index by the premiere date.
/// </summary>
2020-07-18 02:03:17 +02:00
PremiereDate = 0,
2020-07-01 03:44:41 +02:00
/// <summary>
/// Index by the production year.
/// </summary>
2020-07-18 02:03:17 +02:00
ProductionYear = 1,
2020-07-01 03:44:41 +02:00
/// <summary>
/// Index by the community rating.
/// </summary>
2020-07-18 02:03:17 +02:00
CommunityRating = 2
2020-07-01 03:44:41 +02:00
}
}