Last active
July 12, 2017 19:37
-
-
Save Ravi61/4776ae920faec8e90d1eb5b2e04b67ab to your computer and use it in GitHub Desktop.
Battleship model with object and array
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
| struct BattleShip: Codable { | |
| var name: String | |
| var created: String | |
| var url: String | |
| struct Film: Codable { | |
| var name: String | |
| var director: String | |
| } | |
| var films: [Film] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment