feat: Initial iOS Health Dashboard app (Swift + SwiftUI)

This commit is contained in:
Cosmo
2026-03-25 10:38:58 +00:00
commit 7cda5deaab
14 changed files with 443 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import Foundation
struct LoginRequest: Codable { let email: String; let password: String }
struct LoginResponse: Codable { let token: String; let user: UserInfo }
struct UserInfo: Codable { let id: Int; let email: String; let name: String }
struct ProfileResponse: Codable { let user: UserInfo; let apiKey: String? }