mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-20 11:34:22 +00:00
12 lines
275 B
C#
12 lines
275 B
C#
using Oqtane.Interfaces;
|
|
|
|
namespace Oqtane.Providers
|
|
{
|
|
public class TextAreaTextEditorProvider : ITextEditorProvider
|
|
{
|
|
public string Name => "TextArea";
|
|
|
|
public string EditorType => "Oqtane.Modules.Controls.TextAreaTextEditor, Oqtane.Client";
|
|
}
|
|
}
|