| 12345678910111213141516171819202122232425262728293031323334353637 | #pragma warning disable CS1591using System;using Jellyfin.Data.Entities;namespace MediaBrowser.Controller.Entities{    public class InternalPeopleQuery    {        /// <summary>        /// Gets or sets the maximum number of items the query should return.        /// </summary>        public int Limit { get; set; }        public Guid ItemId { get; set; }        public string[] PersonTypes { get; set; }        public string[] ExcludePersonTypes { get; set; }        public int? MaxListOrder { get; set; }        public Guid AppearsInItemId { get; set; }        public string NameContains { get; set; }        public User User { get; set; }        public bool? IsFavorite { get; set; }        public InternalPeopleQuery()        {            PersonTypes = Array.Empty<string>();            ExcludePersonTypes = Array.Empty<string>();        }    }}
 |