using System.Collections.Generic; using System.Threading.Tasks; using Oqtane.Documentation; namespace Oqtane.Modules.HtmlText.Services { [PrivateApi("Mark HtmlText classes as private, since it's not very useful in the public docs")] public interface IHtmlTextService { Task> GetHtmlTextsAsync(int moduleId); Task GetHtmlTextAsync(int moduleId); Task GetHtmlTextAsync(int htmlTextId, int moduleId); Task AddHtmlTextAsync(Models.HtmlText htmltext); Task DeleteHtmlTextAsync(int htmlTextId, int moduleId); } }