stepInfoList.cs 291 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. namespace SiteCore.wechat
  3. {
  4. public class StepInfoList
  5. {
  6. public List<stepInfo> stepInfoList { get; set; }
  7. }
  8. public class stepInfo
  9. {
  10. public string timestamp { get; set; }
  11. public int step { get; set; }
  12. }
  13. }