Skip to content

Instantly share code, notes, and snippets.

View alexanderkhitev's full-sized avatar
🚀
Focusing

Alexander Khitev alexanderkhitev

🚀
Focusing
View GitHub Profile
import Foundation
// Inspired by https://gist.github.com/mbuchetics/c9bc6c22033014aa0c550d3b4324411a
struct JSONCodingKeys: CodingKey {
var stringValue: String
init?(stringValue: String) {
self.stringValue = stringValue
}