IHtmlAnalyzeService.cs 329 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using TEAMModelOS.SDK.Context.Configuration;
  5. namespace TEAMModelOS.Service.Services.Exam.Interfaces
  6. {
  7. public interface IHtmlAnalyzeService: IBusinessService
  8. {
  9. List<Models.ItemInfo> AnalyzeWordAsync(string htmlString, string Lang);
  10. }
  11. }