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