Created
February 6, 2015 19:38
-
-
Save justinmakaila/c7bca94907b30ff69d09 to your computer and use it in GitHub Desktop.
JSON Serializable Protocol
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Foundation | |
| import SwiftyJSON | |
| typealias ObjectJSON = JSON | |
| protocol JSONSerializable { | |
| init(json: ObjectJSON) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment