using System; namespace MediaBrowser.Model.Search { /// /// Class SearchHintResult /// public class SearchHintResult { /// /// Gets or sets the item id. /// /// The item id. public string ItemId { get; set; } /// /// Gets or sets the name. /// /// The name. public string Name { get; set; } /// /// Gets or sets the index number. /// /// The index number. public int? IndexNumber { get; set; } /// /// Gets or sets the parent index number. /// /// The parent index number. public int? ParentIndexNumber { get; set; } /// /// Gets or sets the image tag. /// /// The image tag. public Guid? PrimaryImageTag { get; set; } /// /// Gets or sets the type. /// /// The type. public string Type { get; set; } /// /// Gets or sets the type of the media. /// /// The type of the media. public string MediaType { get; set; } /// /// Gets or sets the series. /// /// The series. public string Series { get; set; } /// /// Gets or sets the album. /// /// The album. public string Album { get; set; } /// /// Gets or sets the album artist. /// /// The album artist. public string AlbumArtist { get; set; } /// /// Gets or sets the artists. /// /// The artists. public string[] Artists { get; set; } } }