// // LoginState.swift // punchnet // // Created by 安礼成 on 2026/1/16. // import Foundation import Observation @Observable class AppContext { var noticePort: Int // 调用 "/connect" 之后的网络信息 var networkContext: NetworkContext? init(noticePort: Int) { self.noticePort = noticePort } }