12 lines
160 B
Swift
12 lines
160 B
Swift
struct ChatsState: Stateable {
|
|
var chats: [Chat]
|
|
var currentChat: Chat?
|
|
}
|
|
|
|
// MARK: Init
|
|
extension ChatsState {
|
|
init() {
|
|
chats = []
|
|
}
|
|
}
|