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