mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-18 10:34:22 +00:00
19 lines
409 B
C#
19 lines
409 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; }
|
|
}
|
|
}
|