Try your search with a different keyword or use * as a wildcard.
namespace Nop.Plugin.Tax.Avalara.Domain;
///
/// Represents the tax origin address type enumeration
///
public enum TaxOriginAddressType
{
///
/// Tax origin based on the shipping origin address
///
ShippingOrigin = 1,
///
/// Tax origin based on the default tax address
///
DefaultTaxAddress = 2
}