public DragDropCommandIntern(IDragDropComponent owner, DragDropConfig config = null)
 {
     this.owner  = owner;
     this.config = config ?? new DragDropConfig();
 }
 public static void EnableDragDrop(IDragDropComponent owner, DragDropConfig config) => new DragDropCommandIntern(owner, config).Register();