using System.Threading.Tasks; namespace Oqtane.Interfaces { /// /// Text editor interface. /// public interface ITextEditor { string Name { get; } /// /// initializes the editor with the initialize content. /// /// the initialize content. void Initialize(string content); /// /// get content from the editor. /// /// Task GetContent(); } }