Try your search with a different keyword or use * as a wildcard.
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; }
}