namespace MediaBrowser.Model.Querying
{
    /// 
    /// Class PersonsQuery
    /// 
    public class PersonsQuery : ItemsByNameQuery
    {
        /// 
        /// Gets or sets the person types.
        /// 
        /// The person types.
        public string[] PersonTypes { get; set; }
        /// 
        /// Initializes a new instance of the  class.
        /// 
        public PersonsQuery()
        {
            PersonTypes = new string[] { };
        }
    }
}