namespace DefaultNamespace { /// /// 表示考试信息。 /// public class ExamInfo { public string AppID { get; set; } /// /// 试卷的 ID。 /// public string PaperId { get; set; } /// /// 考场的 ID。 /// public string ExamRoomId { get; set; } /// /// 学生的 ID。 /// public string StudentId { get; set; } /// /// 组的 ID。 /// public string GroupId { get; set; } /// /// 批次的 ID。 /// public string BatchId { get; set; } /// /// 认证令牌。 /// public string Token { get; set; } /// /// 编码后的字符串。 /// public string EncodedStr { get; set; } /// /// 科目ID。 /// public string CourseId { get; set; } /// /// IP 地址。 /// public string IpAddress { get; set; } /// /// 时间信息。 /// public string Time { get; set; } } }