namespace Oqtane.Interfaces
{
///
/// Rich text editor provider interface.
///
public interface ITextEditorProvider
{
///
/// The text editor provider name.
///
string Name { get; }
///
/// The text editor type full name.
///
string EditorType { get; }
}
}