ColumnsEditor.cs 318 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace InABox.Core
  5. {
  6. public class ColumnsEditor : BaseEditor
  7. {
  8. public Type? Type { get; set; }
  9. protected override BaseEditor DoClone()
  10. {
  11. return new ColumnsEditor() { Type = Type };
  12. }
  13. }
  14. }