9 lines
212 B
Swift
9 lines
212 B
Swift
import Foundation
|
|
|
|
internal struct DynamicCodingKey: CodingKey {
|
|
var stringValue: String
|
|
var intValue: Int?
|
|
init?(stringValue: String) { self.stringValue = stringValue }
|
|
init?(intValue: Int) { return nil }
|
|
}
|