1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-12 21:30:32 +05:30
yattee/Model/WatchModel.swift
2023-05-25 18:36:03 +02:00

12 lines
205 B
Swift

import SwiftUI
final class WatchModel: ObservableObject {
static let shared = WatchModel()
@Published var historyToken = UUID()
func watchesChanged() {
historyToken = UUID()
}
}