jellyfin/Jellyfin.Data/Enums/IndexingKind.cs

24 lines
540 B
C#
Raw Normal View History

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