notification target

This commit is contained in:
2017-05-17 10:41:29 +02:00
parent 3a7c464ce6
commit baca1d6253
6 changed files with 2234 additions and 23 deletions

View File

@ -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;
}
}