jellyfin/Jellyfin.Data/Enums/IndexingKind.cs

24 lines
540 B
C#
Raw Normal View History

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