private void OnChatListUpdateNotification(ChatListUpdateNotification notification)
 {
     ChatList.AddRange(
         notification.Channels.Select(k => new ChatListEntry(k)));
 }
Exemplo n.º 2
0
        public void OnListGroupChannels(List <ChannelInfo> channels)
        {
            var message = new ChatListUpdateNotification(this, channels);

            _messenger.Publish(message);
        }