22 lines
400 B
C#
22 lines
400 B
C#
namespace Nop.Plugin.Payments.PayPalCommerce.Domain;
|
|
|
|
/// <summary>
|
|
/// Represents the button placement
|
|
/// </summary>
|
|
public enum ButtonPlacement
|
|
{
|
|
/// <summary>
|
|
/// Shopping cart page
|
|
/// </summary>
|
|
Cart,
|
|
|
|
/// <summary>
|
|
/// Product details page
|
|
/// </summary>
|
|
Product,
|
|
|
|
/// <summary>
|
|
/// Checkout payment method page
|
|
/// </summary>
|
|
PaymentMethod
|
|
} |