iOS Swift - Local Data Persistence
Examine the following SwiftData model declaration:
What is the issue with this model?
@Model class Event {
var date: Date
var location: String?
}What is the issue with this model?
