conversations-classic-ios/ConversationsClassic/AppCore/Actions/ChatsActions.swift
2024-06-20 07:27:13 +02:00

6 lines
135 B
Swift

enum ChatsAction: Codable {
case chatsListUpdated(chats: [Chat])
case startChat(accountJid: String, participantJid: String)
}