using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Web; using Sony.Filtr.Search; using Sony.Filtr.Search.SearchItems; namespace Sony.Filtr.API.ViewModels.v3 { public class SearchResultViewModel { public SearchResultViewModel() { 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; } } }