using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LM.DingTalk.Models.Biz { internal class DingTalkResponse { public int? errcode { get; set; } public string? errmsg { get; set; } public T? result { get; set; } public string? request_id { get; set; } public bool? success { get; set; } } }