Skip to content

Instantly share code, notes, and snippets.

@igroomgrim
Created November 10, 2015 03:42
Show Gist options
  • Save igroomgrim/20715efe2028acf86089 to your computer and use it in GitHub Desktop.
Save igroomgrim/20715efe2028acf86089 to your computer and use it in GitHub Desktop.
Realm Object - TDTask model
import RealmSwift
class TDTask: Object {
dynamic var title: String = ""
dynamic var taskDescription: String = ""
dynamic var done: Bool = false
dynamic var created: NSTimeInterval = NSDate().timeIntervalSince1970
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment