mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-22 04:24:23 +00:00
14 lines
328 B
C#
14 lines
328 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";
|
|
|
|
public string SettingsType => string.Empty;
|
|
}
|
|
}
|