Files

28 lines
559 B
C#
Raw Permalink Normal View History

2024-04-04 19:28:18 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-04-06 18:28:32 +08:00
namespace Yi.Framework.ChatHub.Domain.Shared.Model
2024-04-04 19:28:18 +08:00
{
2024-04-06 18:28:32 +08:00
public class ChatUserModel
2024-04-04 19:28:18 +08:00
{
/// <summary>
/// 用户id
/// </summary>
public Guid UserId { get; set; }
/// <summary>
/// 用户名称
/// </summary>
public string UserName { get; set; }
/// <summary>
/// 用户头像
/// </summary>
public string? UserIcon { get; set; }
2024-04-06 18:28:32 +08:00
2024-04-04 19:28:18 +08:00
}
}