namespace MediaBrowser.Model.Querying
{
    public class SimilarItemsByNameQuery
    {
        /// 
        /// The user to localize search results for
        /// 
        /// The user id.
        public string UserId { get; set; }
        /// 
        /// Gets or sets the name.
        /// 
        /// The name.
        public string Name { get; set; }
        /// 
        /// The maximum number of items to return
        /// 
        /// The limit.
        public int? Limit { get; set; }
        /// 
        /// Fields to return within the items, in addition to basic information
        /// 
        /// The fields.
        public ItemFields[] Fields { get; set; }
    }
}