/*---------------------------------------------------------------- Copyright (C) 2019 Senparc 文件名:GetSessionListResultJson.cs 文件功能描述:获取客服的会话列表返回结果 创建标识:Senparc - 20150306 ----------------------------------------------------------------*/ using System.Collections.Generic; using Senparc.Weixin.Entities; namespace Senparc.Weixin.MP.AdvancedAPIs.CustomService { /// /// 获取客服的会话列表返回结果 /// public class GetSessionListResultJson : WxJsonResult { /// /// 会话列表 /// public List sessionlist { get; set; } } public class SingleSessionList { /// /// 客户openid /// public string openid { get; set; } /// /// 会话创建时间,UNIX时间戳 /// public string createtime { get; set; } } }