2018-01-02 16:35:03 +01:00
|
|
|
namespace Yavsc.Abstract.Streaming
|
2017-01-13 16:31:40 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public interface IChatUserInfo
|
|
|
|
|
{
|
|
|
|
|
IConnection[] Connections { get; set; }
|
|
|
|
|
string UserId { get; set; }
|
|
|
|
|
|
|
|
|
|
string UserName { get; set; }
|
|
|
|
|
|
|
|
|
|
string Avatar { get; set; }
|
|
|
|
|
|
|
|
|
|
string[] Roles { get; set; }
|
|
|
|
|
}
|
2018-01-02 16:35:03 +01:00
|
|
|
}
|