JsonEditor.cs 328 B

12345678910111213141516171819
  1. using System;
  2. namespace InABox.Core
  3. {
  4. public class JsonEditor : BaseEditor
  5. {
  6. public JsonEditor(Type type)
  7. {
  8. Type = type;
  9. }
  10. public Type Type { get; set; }
  11. protected override BaseEditor DoClone()
  12. {
  13. return new JsonEditor(Type);
  14. }
  15. }
  16. }