25 lines
563 B
C#
25 lines
563 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 用户ID
|
|
/// </summary>
|
|
public string? UserID { get; set; }
|
|
/// <summary>
|
|
/// 昵称(姓名)
|
|
/// </summary>
|
|
public string? Nick { get; set; }
|
|
/// <summary>
|
|
/// 头像地址
|
|
/// </summary>
|
|
public string? FaceUrl { get; set; }
|
|
}
|
|
}
|