14 lines
153 B
Swift
14 lines
153 B
Swift
|
|
struct ImageDescriptions {
|
|
|
|
let imageId: String
|
|
|
|
let german: String?
|
|
|
|
let english: String?
|
|
}
|
|
|
|
extension ImageDescriptions: Codable {
|
|
|
|
}
|