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