using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace FrequentlyAskedQuestionsCodeFirst.Models.FaqViewModels { public class QuestionIndexData { public IEnumerable Questions { get; set; } public IEnumerable Tags { get; set; } public IEnumerable QuestionTags { get; set; } public IEnumerable Votes { get; set; } //public IList Questions { get; set; } //public PaginatedList PagedQuestions { get; set; } } }