2
0

Common.cs 532 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WechatPCMsgBakTool.Model
  7. {
  8. public class DBInfo
  9. {
  10. public int MaxMsgDBCount { get; set; }
  11. public int MaxMediaDBCount { get; set;}
  12. public string UserPath { get; set; } = "";
  13. public string ResPath { get; set; } = "";
  14. }
  15. public class UserInfo
  16. {
  17. public string UserName { get; set; } = "";
  18. public string NickName { get; set; } = "";
  19. }
  20. }