Skip to content

Instantly share code, notes, and snippets.

@niwatako
Created August 6, 2016 04:28
Show Gist options
  • Save niwatako/eb08ec2e33b92e7bd681b05c7e6731c8 to your computer and use it in GitHub Desktop.
Save niwatako/eb08ec2e33b92e7bd681b05c7e6731c8 to your computer and use it in GitHub Desktop.
Tweet.swift #CodePiece #realm_swift #realm_jp
import Foundation
import RealmSwift
class Tweet: Object {
dynamic var name = ""
dynamic var text = ""
dynamic var iconURL = ""
dynamic var id = ""
dynamic var createdAt = NSDate()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment