1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-12 21:30:32 +05:30
yattee/Model/WatchModel.swift

12 lines
205 B
Swift
Raw Normal View History

2023-05-25 17:58:29 +05:30
import SwiftUI
final class WatchModel: ObservableObject {
static let shared = WatchModel()
@Published var historyToken = UUID()
func watchesChanged() {
historyToken = UUID()
}
}