mirror of
https://github.com/ivanvorobei/SwiftUI.git
synced 2026-04-23 00:58:41 +02:00
16 lines
281 B
Swift
Executable File
16 lines
281 B
Swift
Executable File
/*
|
||
See LICENSE folder for this sample’s licensing information.
|
||
|
||
Abstract:
|
||
A model object that stores app data.
|
||
*/
|
||
|
||
import Combine
|
||
import SwiftUI
|
||
|
||
final class UserData: ObservableObject {
|
||
@Published var showFavoritesOnly = false
|
||
|
||
@Published var landmarks = landmarkData
|
||
}
|