Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Configuration;
namespace Nop.Plugin.Payments.CheckMoneyOrder;
///
/// Represents settings of "Check money order" payment plugin
///
public class CheckMoneyOrderPaymentSettings : ISettings
{
///
/// Gets or sets a description text
///
public string DescriptionText { get; set; }
///
/// Gets or sets a value indicating whether to "additional fee" is specified as percentage. true - percentage, false - fixed value.
///
public bool AdditionalFeePercentage { get; set; }
///
/// Gets or sets an additional fee
///
public decimal AdditionalFee { get; set; }
///
/// Gets or sets a value indicating whether shippable products are required in order to display this payment method during checkout
///
public bool ShippableProductRequired { get; set; }
}