using System.Collections.Generic; namespace Yavsc.Abstract.Streaming { public interface IChatConnection : IConnection where T: IChatRoomUsage { List Rooms { get; } } }