1.异步优化,现在起创建工作区,导出聊天记录,都是独立线程操作了!体验更好!并且多了相关状态提示,体验更好。 2.新增批量导出模式,左侧工作区,右键->管理就见啦! 3.修复视频、图片导出时逻辑bug
29 lines
659 B
C#
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; } = "";
|
|
}
|
|
}
|