using System;
using System.Collections.Generic;
namespace GxPress.Result.App.OftenContact
{
///
///
///
public class OftenContactInfo : Middle.Middle
{
///
///
///
///
public int Id { get; set; }
///
/// 姓名
///
public string Name { get; set; }
///
/// 头像地址
///
public string AvatarUrl { get; set; }
///
/// 聊天时间
///
public DateTime? ChatTime { get; set; }
///
/// 聊天类型 1 文本 2 图片 3 文件 4 视频 5语音
///
public int MsgType { get; set; }
///
/// 聊天内容
///
public string ChatText { get; set; }
///
/// 环信ID
///
public string ImId { get; set; }
///
/// 聊天类型 1单聊2群聊
///
public int ChatType { get; set; }
///
/// 发送到用户ID
///
public int ToUserId { get; set; }
///
/// 时间
///
///
public DateTime? LastModifiedDate { get; set; }
///
///
///
///
public string ContactUserId { get; set; }
///
/// 是否免打扰
///
///
public bool IsDisturb { get; set; }
}
///
/// 分
///
public class OftenContactDto
{
///
///
///
///
public int Id { get; set; }
///
/// 是否置顶
///
///
public bool IsTop { get; set; }
}
}