using System.Collections.Generic; using VideoGameQuotes.Api; namespace VideoGameQuotes.Web.Models { public class QuoteCollectionModel { public IEnumerable Quotes { get; set; } public User User { get; set; } } }