CHResume/ResumeBuilder/Data/TopInfo.swift

27 lines
284 B
Swift
Raw Normal View History

2023-08-18 22:47:24 +02:00
import Foundation
struct TopInfo {
let imageName: String
let name: String
let tagLine: String
let place: String
let ageText: String
let web: String
let email: String
let phone: String
let github: String
}
2023-08-21 09:16:45 +02:00
extension TopInfo: Codable {
}