IQuestionOptionsService.cs 608 B

12345678910111213141516171819
  1. using System.ComponentModel;
  2. using Exam.Share;
  3. using Hotline.Exams.Questions;
  4. using Hotline.Repository.SqlSugar.Exam.Interface;
  5. using Hotline.Share.Dtos.Questions;
  6. using Hotline.Share.Requests.Question;
  7. namespace Hotline.Application.Exam.Interface.Questions
  8. {
  9. /// <summary>
  10. /// 试题选项服务接口
  11. /// </summary>
  12. [Description("试题选项服务接口")]
  13. public interface IQuestionOptionsService:IQueryService<QuestionOptionsViewResponse,QuestionOptionsDto,QuestionOptionsPagedRequest>,IApiService<AddQuestionOptionsDto,UpdateQuestionOptionsDto,ExamQuestionOptions>
  14. {
  15. }
  16. }