14 lines
No EOL
231 B
C#
14 lines
No EOL
231 B
C#
namespace Yavsc.Abstract.Chat
|
|
{
|
|
|
|
public interface IChatUserInfo
|
|
{
|
|
string UserId { get; set; }
|
|
|
|
string UserName { get; set; }
|
|
|
|
string Avatar { get; set; }
|
|
|
|
string[] Roles { get; set; }
|
|
}
|
|
} |