123456789101112131415161718192021 |
- using Exam.Infrastructure.Data.Interface;
- using System.ComponentModel;
- using System.Runtime.CompilerServices;
- namespace Hotline.Share.Requests.Exam
- {
- public class ExamQuestionRequest : IQueryRequest
- {
- /// <summary>
- /// 试题Id
- /// </summary>
- [Description("试题Id")]
- public string QuestionId { get; set; }
- /// <summary>
- /// 用户考试Id
- /// </summary>
- [Description("用户考试Id")]
- public string UserExamId { get; set; }
- }
- }
|