yavsc/src/Yavsc.Abstract/Chat/IChatUserInfo.cs

14 lines
231 B
C#
Raw Normal View History

2019-05-08 01:35:10 +01:00
namespace Yavsc.Abstract.Chat
{
public interface IChatUserInfo
{
string UserId { get; set; }
string UserName { get; set; }
string Avatar { get; set; }
string[] Roles { get; set; }
}
2018-01-02 16:35:03 +01:00
}