123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- #region Apache License Version 2.0
- #endregion Apache License Version 2.0
- namespace Senparc.Weixin.MP.AdvancedAPIs.Semantic
- {
-
-
-
- public class Semantic_TrainResult : BaseSemanticResultJson
- {
- public Semantic_Train semantic { get; set; }
- }
- public class Semantic_Train : BaseSemanticIntent
- {
- public Semantic_Details_Train details { get; set; }
- }
- public class Semantic_Details_Train
- {
-
-
-
- public Semantic_DateTime start_date { get; set; }
-
-
-
- public Semantic_DateTime end_date { get; set; }
-
-
-
- public Semantic_Location start_loc { get; set; }
-
-
-
- public Semantic_Location end_loc { get; set; }
-
-
-
- public string code { get; set; }
-
-
-
- public string seat { get; set; }
-
-
-
- public string category { get; set; }
-
-
-
- public string type { get; set; }
- }
- }
|