14 lines
251 B
Swift
14 lines
251 B
Swift
struct PHThemeStylePadding: Decodable {
|
|
let top: Double?
|
|
let bottom: Double?
|
|
let leading: Double?
|
|
let trailing: Double?
|
|
|
|
private enum CodingKeys: String, CodingKey {
|
|
case top
|
|
case bottom
|
|
case leading = "left"
|
|
case trailing = "right"
|
|
}
|
|
}
|