using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WeChatCore.Entity { /// /// 发送消息返回结果 /// public class SendMsgResultEntity { /// /// /// public BaseResponseEntity BaseResponse { get; set; } /// /// /// public string MsgID { get; set; } /// /// /// public string LocalID { get; set; } } }