2025-04-21 14:10:27 +08:00

45 lines
1008 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Response.Wechat
{
/// <summary>
/// 小程序支付参数
/// </summary>
public class WxPaySign
{
/// <summary>
/// 签名类型默认MD5支持HMAC-SHA256和MD5
/// </summary>
public string SignType { get; set; }
/// <summary>
/// 随机字符串
/// </summary>
public string NonceStr { get; set; }
/// <summary>
/// 预支付ID
/// </summary>
public string Package { get; set; }
/// <summary>
/// 时间戳
/// </summary>
public string TimeStamp { get; set; }
/// <summary>
/// 支付签名
/// </summary>
public string PaySign { get; set; }
/// <summary>
/// AppId
/// </summary>
public string AppId { get; set; }
}
}