19 lines
254 B
Swift
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
|
|
}
|
|
}
|