Created
February 13, 2018 19:19
-
-
Save mczachurski/eb71e8f12b6c3a23a8de5bc3b8171907 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
import Foundation | |
class Task : Codable { | |
var id: Int | |
var name: String | |
var isFinished: Bool | |
init(id: Int, name: String, isFinished: Bool) { | |
self.id = id | |
self.name = name | |
self.isFinished = isFinished | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment