Last active
October 21, 2017 07:05
-
-
Save ts95/815d815d381d929bab00f61e301eb19b to your computer and use it in GitHub Desktop.
Book.swift
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 Book: Codable { | |
var isbn: String | |
var title: String | |
var authors: [String] | |
var year: Int | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment