Files
juipnet/Infrastructure/WxApi/TemplateMessage/SendResult.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

16 lines
310 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; }
}
}