123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #region Apache License Version 2.0
- #endregion Apache License Version 2.0
- namespace Senparc.Weixin.MP.AdvancedAPIs.Semantic
- {
-
-
-
- public class Semantic_TelephoneResult : BaseSemanticResultJson
- {
- public Semantic_Telephone semantic { get; set; }
- }
- public class Semantic_Telephone : BaseSemanticIntent
- {
- public Details_Telephone details { get; set; }
- }
- public class Details_Telephone
- {
-
-
-
- public string name { get; set; }
-
-
-
- public string telephone { get; set; }
- }
- }
|