using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using TEAMModelOS.Model.Evaluation.Dtos; using TEAMModelOS.Model.Evaluation.Dtos.Own; using TEAMModelOS.Service.Core.Interfaces; namespace TEAMModelOS.Service.Evaluation.Interfaces { public interface IHtmlAnalyzeService : IBusinessService, IBaseService { List AnalyzeWordAsync(string htmlString, string Lang); } }