Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Tax;
///
/// Represents the tax based on
///
public enum TaxBasedOn
{
///
/// Billing address
///
BillingAddress = 1,
///
/// Shipping address
///
ShippingAddress = 2,
///
/// Default address
///
DefaultAddress = 3
}