This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
oqtane.framework-not-mirrored/Oqtane.Client/Providers/TextAreaTextEditorProvider.cs
2024-07-02 09:55:38 +08:00

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";
}
}