Skip to content

Instantly share code, notes, and snippets.

@ts95
Last active October 5, 2017 06:25
Show Gist options
  • Save ts95/b4e0a74d124d2ef6b0198ac4e34463e3 to your computer and use it in GitHub Desktop.
Save ts95/b4e0a74d124d2ef6b0198ac4e34463e3 to your computer and use it in GitHub Desktop.
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