ExportInterface.cs 423 B

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