Files
oqtane.framework/Oqtane.Shared/Interfaces/ITextEditorProvider.cs

24 lines
545 B
C#

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; }
/// <summary>
/// The text editor settings type full name.
/// </summary>
string SettingsType { get; }
}
}