- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.Model.Evaluation.Models.CosmosModels
- {
- public class AnswerDetail
- {
- public string Index { get; set; }
- public float Point { get; set; }
- public string Detail { get; set; }
- }
- }
|