diff --git a/Yavsc/Settings/PayPalSettings.cs b/Yavsc/Settings/PayPalSettings.cs
index 88396709..d5681fd8 100644
--- a/Yavsc/Settings/PayPalSettings.cs
+++ b/Yavsc/Settings/PayPalSettings.cs
@@ -13,18 +13,38 @@ namespace Yavsc
///
///
public string ClientId { get; set; }
+
///
/// For sandbox only?
///
///
public string ClientSecret { get; set; }
+ ///
+ /// Your application id ...
+ ///
+ ///
public string ApplicationId { get; set; }
+
+ ///
+ /// Get it from your PayPal Business profile settings
+ ///
+ ///
+ public string MerchantAccountId { get; set; }
+
+ ///
+ /// PayPal Classic Api credentials model
+ ///
public class ClassicPayPalAccountApiCredential {
public string Signature { get; set; }
public string ApiUsername { get; set; }
public string ApiPassword { get; set; }
-
}
+
+ ///
+ /// Live access is configured at:
+ /// https://www.paypal.com/businessprofile/mytools/apiaccess
+ ///
public ClassicPayPalAccountApiCredential[] Accounts { get; set; }
+
}
}