Class Country
Stores settings about a country
[JsonObject(NamingStrategyType = typeof(CamelCaseNamingStrategy))]
public class Country : IEntity
- Inheritance
-
Country
- Implements
- Inherited Members
Properties
Code
public string Code { get; set; }
Property Value
Currency
[JsonIgnore]
public Currency? Currency { get; set; }
Property Value
CurrencyId
public Guid? CurrencyId { get; set; }
Property Value
- Guid?
Enabled
public bool Enabled { get; set; }
Property Value
Id
public Guid Id { get; set; }
Property Value
Name
public string Name { get; set; }
Property Value
Store
[JsonIgnore]
public Store Store { get; set; }
Property Value
StoreId
public Guid StoreId { get; set; }