Files
WechatBakTool/Model/YearReport.cs
Suxue c996a89303 v0.9.2.0版本!
1.异步优化,现在起创建工作区,导出聊天记录,都是独立线程操作了!体验更好!并且多了相关状态提示,体验更好。
2.新增批量导出模式,左侧工作区,右键->管理就见啦!
3.修复视频、图片导出时逻辑bug
2023-12-11 16:43:11 +08:00

29 lines
659 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WechatBakTool.Model
{
public class YearReport
{
public List<ReportItem>? List { get; set; }
public int Version { get; set; }
}
public class ReportItem
{
public string ImgName { get; set; } = "";
public string Type { get; set; } = "";
public List<TextPostion>? TextPostions { get; set; }
}
public class TextPostion
{
public double X { get; set; }
public double Y { get; set; }
public string TextTemplate { get; set; } = "";
}
}