8 lines
128 B
Swift
8 lines
128 B
Swift
struct PHLayout: Decodable {
|
|
let blocks: [PHBlock]
|
|
|
|
private enum CodingKeys: String, CodingKey {
|
|
case blocks = "block"
|
|
}
|
|
}
|