CHResume/ResumeBuilder/Data/CareerStation.swift

23 lines
282 B
Swift
Raw Normal View History

2023-08-18 22:47:24 +02:00
import Foundation
struct CareerStation: Identifiable {
let time: String
let location: String
let title: String
let subtitle: String?
let text: String?
var id: String {
title + time + location
}
}
2023-08-21 09:16:45 +02:00
extension CareerStation: Codable {
}