11 lines
190 B
Swift
11 lines
190 B
Swift
import SwiftData
|
|
|
|
enum SchemaVersion {
|
|
static var models: [any PersistentModel.Type] = [
|
|
Split.self,
|
|
Exercise.self,
|
|
Workout.self,
|
|
WorkoutLog.self
|
|
]
|
|
}
|