yavsc/Yavsc.Abstract/Streaming/IChatUserInfo.cs

15 lines
284 B
C#

7 years ago
namespace Yavsc.Abstract.Streaming
{
public interface IChatUserInfo
{
IConnection[] Connections { get; set; }
string UserId { get; set; }
string UserName { get; set; }
string Avatar { get; set; }
string[] Roles { get; set; }
}
7 years ago
}