YearReport.cs 659 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WechatBakTool.Model
  7. {
  8. public class YearReport
  9. {
  10. public List<ReportItem>? List { get; set; }
  11. public int Version { get; set; }
  12. }
  13. public class ReportItem
  14. {
  15. public string ImgName { get; set; } = "";
  16. public string Type { get; set; } = "";
  17. public List<TextPostion>? TextPostions { get; set; }
  18. }
  19. public class TextPostion
  20. {
  21. public double X { get; set; }
  22. public double Y { get; set; }
  23. public string TextTemplate { get; set; } = "";
  24. }
  25. }