1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- using Senparc.Weixin.Entities;
- using System.Collections.Generic;
- namespace Senparc.Weixin.MP.AdvancedAPIs.Wxa.MerchantJson
- {
-
-
-
- public class GetMerchantCategoryResult : WxJsonResult
- {
-
-
-
- public AllCategoryInfo data { get; set; }
- }
-
-
-
- public class AllCategoryInfo
- {
-
-
-
- public CateGoryCollection all_category_info { get; set; }
- }
-
-
-
- public class CateGoryCollection
- {
-
-
-
- public IEnumerable<MerchantCategory> categories { get; set; }
- }
-
-
-
- public class MerchantCategory
- {
-
-
-
- public int id { get; set; }
-
-
-
- public string name { get; set; }
-
-
-
- public int level { get; set; }
-
-
-
- public IEnumerable<int> children { get; set; }
-
-
-
- public int? father { get; set; }
-
-
-
- public QualifyExter_list qualify { get; set; }
- public int scene { get; set; }
-
-
-
- public int sensitive_type { get; set; }
- }
- public class QualifyValue
- {
-
-
-
- public string name { get; set; }
- }
- public class QualifyInner_list
- {
- public IEnumerable<QualifyValue> inner_list { get; set; }
- }
- public class QualifyExter_list
- {
- public IEnumerable<QualifyInner_list> exter_list { get; set; }
- }
- }
|