using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace NEducation.Models { public class DataResult { public string topicId { get; set; } public int total { get; set; } public AnswerGuess[] answerGuess { get; set; } public AnswerGuess[] answerWrite { get; set; } } }