ExamQuestionRequest.cs 329 B

1234567891011121314
  1. using Exam.Infrastructure.Data.Interface;
  2. using System.ComponentModel;
  3. namespace Hotline.Share.Requests.Exam
  4. {
  5. public class ExamQuestionRequest : IQueryRequest
  6. {
  7. /// <summary>
  8. /// 试题Id
  9. /// </summary>
  10. [Description("试题Id")]
  11. public string QuestionId { get; set; }
  12. }
  13. }