Skip to content

Instantly share code, notes, and snippets.

View akovalov's full-sized avatar

Alex Kovalov akovalov

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
}