Files
juipnet/Infrastructure/WxApi/TemplateMessage/SendResult.cs
“wanyongkang” 40a40b6d36 忽略
2020-12-28 14:55:48 +08:00

16 lines
295 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Hncore.Wx.Open
{
public class SendResult
{
public int errcode { get; set; }
public string errmsg { get; set; }
public long msgid { get; set; }
}
}