struct ChatsState: Stateable { var chats: [Chat] } // MARK: Init extension ChatsState { init() { chats = [] } }