1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #region Apache License Version 2.0
- #endregion Apache License Version 2.0
- using System.Collections.Generic;
- namespace Senparc.Weixin.MP.AdvancedAPIs.Analysis
- {
-
-
-
- public class AnalysisResultJson<T> : BaseAnalysisResult
- {
- public List<T> list
- {
- get { return base.ListObj as List<T>; }
- set { base.ListObj = value; }
- }
- public AnalysisResultJson()
- {
- ListObj = new List<T>();
- }
- }
- }
|