DataResult.cs 353 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace NEducation.Models
  6. {
  7. public class DataResult
  8. {
  9. public string topicId { get; set; }
  10. public int total { get; set; }
  11. public AnswerGuess[] answerGuess { get; set; }
  12. public AnswerGuess[] answerWrite { get; set; }
  13. }
  14. }