using Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal; namespace CompetitionAPI.api.unity { /// /// 写入操作票步骤单步结果接口 /// public class WriteTicketProcRequest { public string OperationTicketId { get; set; } /// /// 考试id /// public string ExamId { get; set; } /// /// 类型 /// public string Type { get; set; } /// /// 用户id /// public string UserId { get; set; } /// /// /// public string Score { get; set; } /// /// /// public string ScoreReason { get; set; } } }