14 lines
150 B
Swift
14 lines
150 B
Swift
|
|
struct FileDescriptions {
|
|
|
|
let fileId: String
|
|
|
|
let german: String?
|
|
|
|
let english: String?
|
|
}
|
|
|
|
extension FileDescriptions: Codable {
|
|
|
|
}
|