Files
swift-study/demo/Models/UserAccountCardModel.swift
2024-01-24 18:02:39 +08:00

16 lines
234 B
Swift

//
// UserAccountCardModel.swift
// demo
//
// Created by Jason on 2024/1/24.
//
import Foundation
struct UserAccountCardModel: Identifiable {
var id = UUID()
var title: String
var icon: String
var info: String
}