ExportInterface.cs 498 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 WechatBakTool.Model;
  7. using WechatBakTool.ViewModel;
  8. namespace WechatBakTool.Export
  9. {
  10. public interface IExport
  11. {
  12. void InitTemplate(WXContact session,string path);
  13. bool SetMsg(WXUserReader reader, WXContact session, WorkspaceViewModel viewModel, DatetimePickerViewModel dateModel);
  14. void SetEnd();
  15. void Save(string path = "");
  16. }
  17. }