Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

TaxBasedOn.cs

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
}