1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
-
- using System.Collections.Generic;
- using Senparc.Weixin.Entities;
- namespace Senparc.Weixin.MP.AdvancedAPIs.CustomService
- {
-
-
-
- public class GetWaitCaseResultJson : WxJsonResult
- {
-
-
-
- public int count { get; set; }
-
-
-
- public List<SingleWaitCase> waitcaselist { get; set; }
- }
- public class SingleWaitCase
- {
-
-
-
- public string openid { get; set; }
-
-
-
- public string kf_account { get; set; }
-
-
-
- public string createtime { get; set; }
- }
- }
|