16 lines
295 B
C#
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; }
|
|
|
|
}
|
|
}
|