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
{
///
/// 考生作答信息
///
public class ExamAnswer :CosmosEntity
{
// [PartitionKey(name = "ExamAnswer")]
public ExamAnswer()
{
pk = "ExamAnswer";
answer = new List>();
}
public List> answer { get; set; }
}
}