2016-05-17 18:22:18 +02:00
|
|
|
namespace Yavsc
|
|
|
|
|
{
|
|
|
|
|
public class PayPalSettings {
|
2017-05-05 23:37:07 +02:00
|
|
|
|
|
|
|
|
public string Mode { get; set; }
|
2016-05-17 18:22:18 +02:00
|
|
|
public string Secret { get; set; }
|
2017-05-05 23:37:07 +02:00
|
|
|
public string ClientId { get; set; }
|
|
|
|
|
|
2017-05-16 20:58:52 +02:00
|
|
|
// NV/SOAP Api - Signature
|
2017-05-17 01:42:46 +02:00
|
|
|
public string UserId { get; set; }
|
|
|
|
|
public string Password { get; set; }
|
|
|
|
|
public string Signature { get; set; }
|
2016-05-17 18:22:18 +02:00
|
|
|
}
|
2017-05-05 23:37:07 +02:00
|
|
|
}
|