punchnet-macos/punchnet/Views/AppContext.swift
2026-03-20 00:13:03 +08:00

23 lines
347 B
Swift

//
// 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
}
}