Class TaxRate
Stores information about a tax rate
[JsonObject(NamingStrategyType = typeof(CamelCaseNamingStrategy))]
public class TaxRate : IEntity, ITaxRate
- Inheritance
-
TaxRate
- Implements
- Inherited Members
Properties
Enabled
public bool Enabled { get; set; }
Property Value
Id
public Guid Id { get; set; }
Property Value
Name
public string Name { get; set; }
Property Value
Rates
public Dictionary<string, decimal> Rates { get; set; }
Property Value
Store
[JsonIgnore]
public Store Store { get; set; }
Property Value
StoreId
public Guid StoreId { get; set; }