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