yavsc/src/Yavsc.Abstract/Chat/IChatUserInfo.cs
2019-05-07 14:01:23 +01:00

15 lines
No EOL
284 B
C#

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; }
}
}