NSManagedObject inherited CoreData class and Sendable

Based on the lines in the link above, it appears that classes auto-generated by CoreData are unable to conform to the Sendable protocol, like this:

@objc (MyFoo)

public class MyFoo: NSManagedObject, Identifiable, Sendable {

What can I do to MyFoo to ensure that it's thread safe, and compatible with Swift Concurrency?