12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using WechatBakTool.Model;
- namespace WechatBakTool.Interface
- {
- public interface IExport
- {
- void InitTemplate(WXSession session);
- void InitTemplate(WXContact session);
- void SetMsg(WXUserReader reader, WXContact session);
- void SetEnd();
- void Save(string path = "", bool append = false);
- }
- }
|