12345678910111213141516171819202122232425 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Text;
- using TEAMModelOS.SDK.Context.Attributes.Azure;
- namespace TEAMModelOS.SDK.Models
- {
- /// <summary>
- /// 考生作答信息
- /// </summary>
- public class ExamAnswer :CosmosEntity
- {
- // [PartitionKey(name = "ExamAnswer")]
- public ExamAnswer()
- {
- pk = "ExamAnswer";
- answer = new List<List<string>>();
- }
-
- public List<List<string>> answer { get; set; }
- }
- }
|