31 lines
737 B
C#
31 lines
737 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.ViewModels
|
|
{
|
|
public class WeChatPayResult
|
|
{
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class WeChatPubResult
|
|
{
|
|
public string appId { get; set; }
|
|
public string nonceStr { get; set; }
|
|
public string package { get; set; }
|
|
public string paySign { get; set; }
|
|
public string signType { get; set; }
|
|
public string timeStamp { get; set; }
|
|
public string parameter { get; set; }
|
|
public string response { get; set; }
|
|
public int MemberId { get; set; }
|
|
public int orderStatus { get; set; }
|
|
|
|
public int cateId { get; set; }
|
|
}
|
|
}
|