chatRooms
This commit is contained in:
11
Yavsc.Abstract/Streaming/IChatRoom.cs
Normal file
11
Yavsc.Abstract/Streaming/IChatRoom.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Yavsc.Abstract.Streaming
|
||||
{
|
||||
public interface IChatRoom<TUsage> where TUsage : IChatRoomUsage
|
||||
{
|
||||
string Name { get; set; }
|
||||
string Topic { get ; set; }
|
||||
List<TUsage> UserList { get; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user