ExportInterface.cs 471 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using WechatPCMsgBakTool.Model;
  7. namespace WechatPCMsgBakTool.Interface
  8. {
  9. public interface IExport
  10. {
  11. void InitTemplate(WXSession session);
  12. void InitTemplate(WXContact session);
  13. void SetMsg(WXUserReader reader, WXContact session);
  14. void SetEnd();
  15. void Save(string path = "", bool append = false);
  16. }
  17. }