Created
May 31, 2020 11:53
-
-
Save EnesKaraosman/bc6301eea6f21943a0128654763b6949 to your computer and use it in GitHub Desktop.
ChatMessage
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
struct ChatMessage: Identifiable { | |
var id = UUID() | |
var user: ChatUser | |
var messageKind: ChatMessageKind | |
var isSender: Bool | |
var date: Date | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment