Created
August 6, 2016 04:28
-
-
Save niwatako/eb08ec2e33b92e7bd681b05c7e6731c8 to your computer and use it in GitHub Desktop.
Tweet.swift #CodePiece #realm_swift #realm_jp
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 | |
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