24 lines
750 B
C#
24 lines
750 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.ViewModels
|
|
{
|
|
public class WeixinPayResult
|
|
{
|
|
public string appid { get; set; }
|
|
public string mchi_id { get; set; }
|
|
public string device_info { get; set; }
|
|
public string nonce_str { get; set; }
|
|
public string sign { get; set; }
|
|
public string result_code { get; set; }
|
|
public string err_code { get; set; }
|
|
public string err_code_des { get; set; }
|
|
public string trade_type { get; set; }
|
|
public string prepay_id { get; set; }
|
|
public string code_url { get; set; }
|
|
public string timeStamp { get; set; }
|
|
public string orderid { get; set; }
|
|
}
|
|
}
|