import ActivityKit import Foundation struct RecordingActivityAttributes: ActivityAttributes { struct ContentState: Codable, Hashable { var timerStartDate: Date var elapsedSeconds: TimeInterval var isPaused: Bool } var sessionID: UUID var title: String var sourceName: String }