notification target
This commit is contained in:
parent
1f5e6cf2e1
commit
955752a184
6 changed files with 2234 additions and 23 deletions
|
|
@ -1,22 +0,0 @@
|
|||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Yavsc.ViewModels.PayPal
|
||||
{
|
||||
public class CreatePaymentRequest
|
||||
{
|
||||
[Required]
|
||||
public string intent { get; set; } = "sale"; // sale,
|
||||
public string experience_profile_id { get; set; }
|
||||
public class RedirectUrls
|
||||
{
|
||||
public string return_url { get; set; } = "";
|
||||
public string cancel_url { get; set; }
|
||||
}
|
||||
public RedirectUrls redirect_urls;
|
||||
public class Payer
|
||||
{
|
||||
public string payment_method { get; set; } = "paypal";
|
||||
}
|
||||
Payer payer;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue