CardQRInfo.cs 485 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Senparc.Weixin.MP.AdvancedAPIs.Card
  7. {
  8. public class QR_CARD_INFO
  9. {
  10. public string card_id { get; set; }
  11. public string code { get; set; }
  12. public string openid { get; set; }
  13. public bool is_unique_code { get; set; }
  14. public string outer_id { get; set; }
  15. public string outer_str { get; set; }
  16. }
  17. }