20 lines
465 B
C#
20 lines
465 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WX.CRM.Model.DTO
|
|
{
|
|
public class AppletMsgModel
|
|
{
|
|
public string ToUserName { get; set; }
|
|
public string FromUserName { get; set; }
|
|
public long CreateTime { get; set; }
|
|
public string MsgType { get; set; }
|
|
public string Content { get; set; }
|
|
public long MsgId { get; set; }
|
|
|
|
}
|
|
}
|