ExportInterface.cs 421 B

123456789101112131415161718
  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 SetMsg(WXReader reader, WXSession session);
  13. void SetEnd();
  14. void Save(string path = "", bool append = false);
  15. }
  16. }