JSPayView.cs 452 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel.WechatModel
  6. {
  7. public class JSPayView
  8. {
  9. public Guid ExaminationRegistrationID { get; set; }
  10. public string AppID { get; set; }
  11. public string TimeStamp { get; set; }
  12. public string NonceStr { get; set; }
  13. public string Package { get; set; }
  14. public string PaySign { get; set; }
  15. }
  16. }