Last active
October 5, 2017 06:25
-
-
Save ts95/b4e0a74d124d2ef6b0198ac4e34463e3 to your computer and use it in GitHub Desktop.
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 { | |
var isbn: String | |
var title: String | |
var authors: [String] | |
var year: Int | |
var country: String | |
var createdAt: Date | |
var format: Format | |
var award: String? | |
enum Format { | |
case paperback | |
case pocket | |
case ebook | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment