Shared data model between view controller and SwiftUI view

What is a good approach to sharing a data model between a UIKit view controller and a SwiftUI view that it presents?

The model property source of truth is declared in the table view controller, and I'd like changes in the presented SwiftUI Form to mutate the model.
Shared data model between view controller and SwiftUI view
 
 
Q