conversations-classic-ios/ConversationsClassic/AppCore/State/ChatsState.swift

12 lines
160 B
Swift
Raw Normal View History

2024-06-19 15:15:27 +00:00
struct ChatsState: Stateable {
var chats: [Chat]
2024-06-20 05:43:49 +00:00
var currentChat: Chat?
2024-06-19 15:15:27 +00:00
}
// MARK: Init
extension ChatsState {
init() {
chats = []
}
}