mycode/myApp/LemonLimeTracker/IOS/Core/TimerActivityAttributes.swift
2026-06-19 19:53:54 +09:00

15 lines
274 B
Swift

#if os(iOS)
import ActivityKit
import Foundation
struct TimerActivityAttributes: ActivityAttributes {
struct ContentState: Codable, Hashable {
var startDate: Date
var elapsedSeconds: Int
}
var taskName: String
var taskIcon: String
}
#endif