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