29 lines
935 B
C#
29 lines
935 B
C#
using Nop.Core.Configuration;
|
|
|
|
namespace Nop.Plugin.Payments.CheckMoneyOrder;
|
|
|
|
/// <summary>
|
|
/// Represents settings of "Check money order" payment plugin
|
|
/// </summary>
|
|
public class CheckMoneyOrderPaymentSettings : ISettings
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets a description text
|
|
/// </summary>
|
|
public string DescriptionText { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether to "additional fee" is specified as percentage. true - percentage, false - fixed value.
|
|
/// </summary>
|
|
public bool AdditionalFeePercentage { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets an additional fee
|
|
/// </summary>
|
|
public decimal AdditionalFee { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether shippable products are required in order to display this payment method during checkout
|
|
/// </summary>
|
|
public bool ShippableProductRequired { get; set; }
|
|
} |