using System.Collections.Generic; using System.Linq; using VideoGameQuotes.Api; namespace VideoGameQuotes.Web.Models { public class BrowseViewModel { public BrowseViewModel() { Games = Enumerable.Empty(); Systems = Enumerable.Empty(); Categories = Enumerable.Empty(); Publishers = Enumerable.Empty(); } public IEnumerable Games { get; set; } public IEnumerable Systems { get; set; } public IEnumerable Categories { get; set; } public IEnumerable Publishers { get; set; } } }