12345678910111213141516 |
- using Microsoft.AspNetCore.Http;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- using TEAMModelOS.SDK.Context.Configuration;
- using TEAMModelOS.Service.Model.PowerPoint;
- namespace TEAMModelOS.Service.Services.PowerPoint.Interface
- {
- public interface IHtexService : IBusinessService
- {
- Task<Dictionary<string, object>> LoadDoc(IFormFile file);
- Task<Htex> AnalyzeHtmlToHtex(string htmlString, string Lang);
- }
- }
|