19 lines
423 B
C#
19 lines
423 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace VOL.DingTalk.Models.Biz
|
|
{
|
|
internal class DingTalkResponse<T>
|
|
{
|
|
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; }
|
|
|
|
}
|
|
}
|