2018-12-27 23:27:57 +00:00
|
|
|
namespace MediaBrowser.Model.Querying
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-02-04 00:49:27 +00:00
|
|
|
/// Enum ItemFilter.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public enum ItemFilter
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-02-04 00:49:27 +00:00
|
|
|
/// The item is a folder.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
IsFolder = 1,
|
2020-02-04 00:49:27 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
/// <summary>
|
2020-02-04 00:49:27 +00:00
|
|
|
/// The item is not folder.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
IsNotFolder = 2,
|
2020-02-04 00:49:27 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
/// <summary>
|
2020-02-04 00:49:27 +00:00
|
|
|
/// The item is unplayed.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
IsUnplayed = 3,
|
2020-02-04 00:49:27 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
/// <summary>
|
2020-02-04 00:49:27 +00:00
|
|
|
/// The item is played.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
IsPlayed = 4,
|
2020-02-04 00:49:27 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
/// <summary>
|
2020-02-04 00:49:27 +00:00
|
|
|
/// The item is a favorite.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
IsFavorite = 5,
|
2020-02-04 00:49:27 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
/// <summary>
|
2020-02-04 00:49:27 +00:00
|
|
|
/// The item is resumable.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
IsResumable = 7,
|
2020-02-04 00:49:27 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
/// <summary>
|
2020-02-04 00:49:27 +00:00
|
|
|
/// The likes.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
Likes = 8,
|
2020-02-04 00:49:27 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
/// <summary>
|
2020-02-04 00:49:27 +00:00
|
|
|
/// The dislikes.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
Dislikes = 9,
|
2020-02-04 00:49:27 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
/// <summary>
|
2020-02-04 00:49:27 +00:00
|
|
|
/// The is favorite or likes.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
IsFavoriteOrLikes = 10
|
|
|
|
}
|
|
|
|
}
|