using System.Collections.Generic; namespace ErsatzTV.Application.Search { public class SearchResultViewModel { public int TotalCount { get; set; } public List Items { get; set; } } }