24 lines
606 B
C#
24 lines
606 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Entity.MsgTool
|
|
{
|
|
public class QiWeiPostJson
|
|
{
|
|
public string corpid { get; set; }
|
|
public string userid { get; set; }
|
|
public string corpname { get; set; }
|
|
public int? pagetype { get; set; }
|
|
public string kfnickname { get; set; }
|
|
public List<OutUserList> outuserList { get; set; }
|
|
}
|
|
public class OutUserList
|
|
{
|
|
public string name { get; set; }
|
|
public string userid { get; set; }
|
|
}
|
|
}
|