mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-03-25 08:55:46 +00:00
17 lines
313 B
Swift
17 lines
313 B
Swift
import Foundation
|
|
import Path
|
|
import Version
|
|
|
|
struct Downloads: Codable {
|
|
let downloads: [Download]
|
|
}
|
|
|
|
public struct Download: Codable {
|
|
public let name: String
|
|
public let files: [File]
|
|
public let dateModified: Date
|
|
|
|
public struct File: Codable {
|
|
public let remotePath: String
|
|
}
|
|
}
|