Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

FixedByWeightByTotalSettings.cs

using Nop.Core.Configuration;

namespace Nop.Plugin.Shipping.FixedByWeightByTotal;

/// 
/// Represents settings of the "Fixed or by weight" shipping plugin
/// 
public class FixedByWeightByTotalSettings : ISettings
{
    /// 
    /// Gets or sets a value indicating whether to limit shipping methods to configured ones
    /// 
    public bool LimitMethodsToCreated { get; set; }

    /// 
    /// Gets or sets a value indicating whether the "shipping calculation by weight and by total" method is selected
    /// 
    public bool ShippingByWeightByTotalEnabled { get; set; }
        
    /// 
    /// Gets or sets a value indicating whether to load all shipping by weight records in one request
    /// 
    public bool LoadAllRecord { get; set; }
}