using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.TencentIM
{
public class Account_importModel
{
///
/// 用户ID
///
public string? UserID { get; set; }
///
/// 昵称(姓名)
///
public string? Nick { get; set; }
///
/// 头像地址
///
public string? FaceUrl { get; set; }
}
}