1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.Model.EvaluaTion.Dtos
- {
- public class Item
- {
- public string Itemindex { get; set; }
- public string Type { get; set; }
- public string Objective { get; set; }
- public string Point { get; set; }
- public string Answer { get; set; }
- public string Spend_time { get; set; }
- public string Edu_goal { get; set; }
- public string Idx { get; set; }
- public string Concept_subject { get; set; }
- public string Concept_area { get; set; }
- public string Concept { get; set; }
- public string Url { get; set; }
- public string Question { get; set; }
- }
- }
|