jellyfin-server/Jellyfin.Data/Enums/IndexingKind.cs

24 lines
540 B
C#
Raw Normal View History

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