using System.Collections.Generic; using System.Linq; namespace Sony.Filtr.PlaylistGeneration.Autocomplete { public class ArtistAutocompleteEntry { public ArtistAutocompleteEntry() { Aliases = new List(); } public string Name { get; set; } public List Aliases { get; set; } public double? Familiarity { get; set; } public double? Hotness { get; set; } } }