remove ITextEditorProvider interface

This commit is contained in:
sbwalker
2024-07-22 13:31:24 -04:00
parent 1c01087eda
commit 8b2e55a969
12 changed files with 40 additions and 66 deletions

View File

@ -7,6 +7,8 @@ namespace Oqtane.Interfaces
/// </summary>
public interface ITextEditor
{
string Name { get; }
/// <summary>
/// initializes the editor with the initialize content.
/// </summary>

View File

@ -1,18 +0,0 @@
namespace Oqtane.Interfaces
{
/// <summary>
/// Rich text editor provider interface.
/// </summary>
public interface ITextEditorProvider
{
/// <summary>
/// The text editor provider name.
/// </summary>
string Name { get; }
/// <summary>
/// The text editor type full name.
/// </summary>
string EditorType { get; }
}
}