ExamQuestionRequest.cs 528 B

123456789101112131415161718192021
  1. using Exam.Infrastructure.Data.Interface;
  2. using System.ComponentModel;
  3. using System.Runtime.CompilerServices;
  4. namespace Hotline.Share.Requests.Exam
  5. {
  6. public class ExamQuestionRequest : IQueryRequest
  7. {
  8. /// <summary>
  9. /// 试题Id
  10. /// </summary>
  11. [Description("试题Id")]
  12. public string QuestionId { get; set; }
  13. /// <summary>
  14. /// 用户考试Id
  15. /// </summary>
  16. [Description("用户考试Id")]
  17. public string UserExamId { get; set; }
  18. }
  19. }