conversations-classic-ios/ConversationsClassic/AppCore/State/ConversationState.swift
2024-06-24 12:51:39 +02:00

12 lines
197 B
Swift

struct ConversationState: Stateable {
var currentChat: Chat?
var currentMessages: [Message]
}
// MARK: Init
extension ConversationState {
init() {
currentMessages = []
}
}