Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Copyright>Copyright (c) Essensoft and Contributors</Copyright>
<Authors>Essensoft</Authors>
<Product>Paylinks</Product>
<Version>5.0.2</Version>
<Version>5.0.3</Version>
<NoWarn>$(NoWarn);CS8618</NoWarn>
<PackageIcon>logo.png</PackageIcon>
<PackageProjectUrl>https://github.com/essensoft/paylinks</PackageProjectUrl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ public class AlipayTradeStatusSyncNotify : IAlipayNotify
[JsonPropertyName("buyer_id")]
public string BuyerId { get; set; }

/// <summary>
/// 买家支付宝用户唯一标识 详情可查看 openid简介
/// </summary>
[JsonPropertyName("buyer_open_id")]
public string? BuyerOpenId { get; set; }

/// <summary>
/// 买家支付宝账号
/// </summary>
Expand Down