punchnet-macos/punchnet/Views/AppContext.swift
2026-02-27 11:12:19 +08:00

19 lines
254 B
Swift

//
// LoginState.swift
// punchnet
//
// Created by on 2026/1/16.
//
import Foundation
import Observation
@Observable
class AppContext {
var noticePort: Int
init(noticePort: Int) {
self.noticePort = noticePort
}
}