Last active
September 27, 2019 18:21
-
-
Save alfredoxyanez/3479ad169b5b54364774dbe8ca03ea9d to your computer and use it in GitHub Desktop.
This file contains 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 | |
struct Message: Codable, Hashable, Identifiable { | |
var id: Int | |
var name: String | |
var lastMessage: String | |
var imageName: String | |
var lastMessagedDate: String | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment