dimensionhub/dimensionhub/Core/UserModel.swift
2025-02-24 16:12:14 +08:00

22 lines
320 B
Swift

//
// UserModel.swift
// dimensionhub
//
// Created by on 2025/2/24.
//
import Foundation
import SwiftData
@Model
final class UserModel {
var userId: Int
var username: String
init(userId: Int, username: String) {
self.userId = userId
self.username = username
}
}