1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- #region Apache License Version 2.0
- #endregion Apache License Version 2.0
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Senparc.Weixin.Entities;
- namespace Senparc.Weixin.MP.AdvancedAPIs.Card
- {
-
-
-
- public class GetApplyProtocolJsonResult : WxJsonResult
- {
- public List<GetApplyProtocol_Category> category { get; set; }
- }
- public class GetApplyProtocol_Category
- {
-
-
-
- public int primary_category_id { get; set; }
-
-
-
- public string category_name { get; set; }
-
-
-
- public List<GetApplyProtocol_Secondary_Category> secondary_category { get; set; }
- }
- public class GetApplyProtocol_Secondary_Category
- {
-
-
-
- public int secondary_category_id { get; set; }
-
-
-
- public string category_name { get; set; }
-
-
-
- public List<string> need_qualification_stuffs { get; set; }
-
-
-
- public int can_choose_prepaid_card { get; set; }
-
-
-
- public int can_choose_payment_card { get; set; }
- }
- }
|