10 lines
197 B
C#
10 lines
197 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Yavsc.Abstract.Streaming
|
|
{
|
|
public interface IChatConnection<T> : IConnection where T: IChatRoomUsage
|
|
{
|
|
List<T> Rooms { get; }
|
|
|
|
}
|
|
} |