34 lines
858 B
C#
34 lines
858 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 TencentSettingModel
|
|
{
|
|
/// <summary>
|
|
/// 昵称
|
|
/// </summary>
|
|
public string? Tag_Profile_IM_Nick { get; set; }
|
|
/// <summary>
|
|
/// 头像地址
|
|
/// </summary>
|
|
public string? Tag_Profile_IM_Image { get; set; }
|
|
/// <summary>
|
|
/// 角色-枚举
|
|
/// </summary>
|
|
public int? Tag_Profile_IM_Role { get; set; }
|
|
/// <summary>
|
|
/// 云校
|
|
/// </summary>
|
|
public string? Tag_Profile_Custom_CSchool { get; set; }
|
|
/// <summary>
|
|
/// 学校
|
|
/// </summary>
|
|
public string? Tag_Profile_Custom_School { get; set; }
|
|
}
|
|
}
|