using System.Collections.Generic; using System.Linq; using Sony.Filtr.Search.SearchItems; namespace Sony.Filtr.Search { public class SearchResult { public SearchResult() { Playlists = new List(); Releases = new List(); Tags = new List(); Artists = new List(); } public List Playlists { get; set; } public List Releases { get; set; } public List Artists { get; set; } public List Tags { get; set; } } }