24 lines
831 B
C#
24 lines
831 B
C#
using Nop.Core.Configuration;
|
|
|
|
namespace Nop.Plugin.Shipping.FixedByWeightByTotal;
|
|
|
|
/// <summary>
|
|
/// Represents settings of the "Fixed or by weight" shipping plugin
|
|
/// </summary>
|
|
public class FixedByWeightByTotalSettings : ISettings
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether to limit shipping methods to configured ones
|
|
/// </summary>
|
|
public bool LimitMethodsToCreated { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether the "shipping calculation by weight and by total" method is selected
|
|
/// </summary>
|
|
public bool ShippingByWeightByTotalEnabled { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether to load all shipping by weight records in one request
|
|
/// </summary>
|
|
public bool LoadAllRecord { get; set; }
|
|
} |