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