RichTextEditor.cs 194 B

12345678910
  1. namespace InABox.Core
  2. {
  3. public class RichTextEditor : BaseEditor
  4. {
  5. protected override BaseEditor DoClone()
  6. {
  7. return new RichTextEditor();
  8. }
  9. }
  10. }