123456789101112131415161718192021 |
- using InABox.Core;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace InABox.DynamicGrid;
- public class DynamicGridColumnsEditorAttribute : BaseEditor
- {
- public Type? Type { get; set; }
- protected override BaseEditor DoClone()
- {
- return new DynamicGridColumnsEditorAttribute()
- {
- Type = Type
- };
- }
- }
|