jellyfin/MediaBrowser.Model/Search/SearchQuery.cs

77 lines
2.0 KiB
C#
Raw Normal View History

#nullable disable
2020-02-03 19:49:27 -05:00
#pragma warning disable CS1591
using System;
2021-12-11 21:31:30 -05:00
using Jellyfin.Data.Enums;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.Search
{
public class SearchQuery
{
public SearchQuery()
{
IncludeArtists = true;
IncludeGenres = true;
IncludeMedia = true;
IncludePeople = true;
IncludeStudios = true;
MediaTypes = Array.Empty<MediaType>();
2021-12-11 21:31:30 -05:00
IncludeItemTypes = Array.Empty<BaseItemKind>();
ExcludeItemTypes = Array.Empty<BaseItemKind>();
}
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets or sets the user to localize search results for.
2018-12-27 18:27:57 -05:00
/// </summary>
/// <value>The user id.</value>
public Guid UserId { get; set; }
/// <summary>
/// Gets or sets the search term.
/// </summary>
/// <value>The search term.</value>
public string SearchTerm { get; set; }
/// <summary>
/// Gets or sets the start index. Used for paging.
2018-12-27 18:27:57 -05:00
/// </summary>
/// <value>The start index.</value>
public int? StartIndex { get; set; }
/// <summary>
/// Gets or sets the maximum number of items to return.
2018-12-27 18:27:57 -05:00
/// </summary>
/// <value>The limit.</value>
public int? Limit { get; set; }
public bool IncludePeople { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool IncludeMedia { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool IncludeGenres { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool IncludeStudios { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool IncludeArtists { get; set; }
public MediaType[] MediaTypes { get; set; }
2020-06-15 17:43:52 -04:00
2021-12-11 21:31:30 -05:00
public BaseItemKind[] IncludeItemTypes { get; set; }
2020-06-15 17:43:52 -04:00
2021-12-11 21:31:30 -05:00
public BaseItemKind[] ExcludeItemTypes { get; set; }
2020-06-15 17:43:52 -04:00
public Guid? ParentId { get; set; }
2018-12-27 18:27:57 -05:00
public bool? IsMovie { get; set; }
public bool? IsSeries { get; set; }
public bool? IsNews { get; set; }
public bool? IsKids { get; set; }
public bool? IsSports { get; set; }
}
}