DynamicGridColumnsEditorAttribute.cs 427 B

123456789101112131415161718192021
  1. using InABox.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace InABox.DynamicGrid;
  8. public class DynamicGridColumnsEditorAttribute : BaseEditor
  9. {
  10. public Type? Type { get; set; }
  11. protected override BaseEditor DoClone()
  12. {
  13. return new DynamicGridColumnsEditorAttribute()
  14. {
  15. Type = Type
  16. };
  17. }
  18. }