2
0

ProtobufModel.cs 459 B

12345678910111213141516171819202122232425
  1. using ProtoBuf;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace WechatBakTool.Model
  8. {
  9. [ProtoContract]
  10. public class TVType
  11. {
  12. [ProtoMember(1)]
  13. public int Type;
  14. [ProtoMember(2)]
  15. public string TypeValue = "";
  16. }
  17. [ProtoContract]
  18. public class ProtoMsg
  19. {
  20. [ProtoMember(3)]
  21. public List<TVType>? TVMsg;
  22. }
  23. }