namespace GxPress.Result.Chat
{
public class LatelyChat
{
///
///
///
///
public int Id { get; set; }
///
/// 环信ID
///
///
public string ImId { get; set; }
///
/// 姓名 或者群
///
///
public string Name { get; set; }
///
/// 头像
///
///
public string AvatarUrl { get; set; }
///
/// 0 用户 1群聊
///
///
public int TypeValue { get; set; }
}
}