IHtexService.cs 485 B

12345678910111213141516
  1. using Microsoft.AspNetCore.Http;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using TEAMModelOS.SDK.Context.Configuration;
  7. using TEAMModelOS.Service.Model.PowerPoint;
  8. namespace TEAMModelOS.Service.Services.PowerPoint.Interface
  9. {
  10. public interface IHtexService : IBusinessService
  11. {
  12. Task<Dictionary<string, object>> LoadDoc(IFormFile file);
  13. Task<Htex> AnalyzeHtmlToHtex(string htmlString, string Lang);
  14. }
  15. }