You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
483 B
C#
24 lines
483 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Tianyi.DingtalkRobotKit
|
|
{
|
|
/// <summary>
|
|
/// 消息发送返回值
|
|
/// </summary>
|
|
public class MessageResult
|
|
{
|
|
/// <summary>
|
|
/// 结果代码
|
|
/// 0 成功,其它均失败
|
|
/// </summary>
|
|
public int errcode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结果说明
|
|
/// </summary>
|
|
public string errmsg { get; set; }
|
|
}
|
|
}
|