TodayHealthInfo.swift
357 Bytes
//
// TodayHealthInfo.swift
// hippo-watch Watch App
//
// Created by shihao on 2025/7/8.
//
import Foundation
enum HealthType: String{
case hrv
case realtime_stress
}
struct RecentData: Codable {
var heartRate: Double?
var oxygenSaturation: Int?
var move: Int?
var exercise: Int?
var stand: Int?
var steps: Int?
}