Class Currency
Stores settings about a currency
[JsonObject(NamingStrategyType = typeof(CamelCaseNamingStrategy))]
public class Currency : IEntity
- Inheritance
-
Currency
- Implements
- Inherited Members
Properties
Baskets
[JsonIgnore]
public IEnumerable<Basket> Baskets { get; set; }
Property Value
Countries
[JsonIgnore]
public IEnumerable<Country> Countries { get; set; }
Property Value
CultureName
public string CultureName { get; set; }
Property Value
FormatTemplate
public string? FormatTemplate { get; set; }
Property Value
Id
public Guid Id { get; set; }
Property Value
Name
public string Name { get; set; }
Property Value
Orders
[JsonIgnore]
public IEnumerable<Order> Orders { get; set; }
Property Value
Store
[JsonIgnore]
public Store Store { get; set; }
Property Value
StoreId
public Guid StoreId { get; set; }