Mango.Nop.Libraries/Nop.Services/Payments/PaymentMethodType.cs

22 lines
462 B
C#

namespace Nop.Services.Payments;
/// <summary>
/// Represents a payment method type
/// </summary>
public enum PaymentMethodType
{
/// <summary>
/// All payment information is entered on the site
/// </summary>
Standard = 10,
/// <summary>
/// A customer is redirected to a third-party site in order to complete the payment
/// </summary>
Redirection = 15,
/// <summary>
/// Button
/// </summary>
Button = 20,
}