using Nop.Core.Configuration; namespace Nop.Plugin.Tax.FixedOrByCountryStateZip; /// /// Represents settings of the "Fixed or by country & state & zip" tax plugin /// public class FixedOrByCountryStateZipTaxSettings : ISettings { /// /// Gets or sets a value indicating whether the "tax calculation by country & state & zip" method is selected /// public bool CountryStateZipEnabled { get; set; } }