Class Store
Stores settings about a store
[JsonObject(NamingStrategyType = typeof(CamelCaseNamingStrategy))]
public class Store : IEntity
- Inheritance
-
Store
- Implements
- Inherited Members
Properties
Address
public string? Address { get; set; }
Property Value
Baskets
public IEnumerable<Basket> Baskets { get; set; }
Property Value
Countries
public IEnumerable<Country> Countries { get; set; }
Property Value
CreatedAt
public DateTime CreatedAt { get; set; }
Property Value
Currencies
public IEnumerable<Currency> Currencies { get; set; }
Property Value
public string? Email { get; set; }
Property Value
Id
public Guid Id { get; set; }
Property Value
Name
public string Name { get; set; }
Property Value
Orders
public IEnumerable<Order> Orders { get; set; }
Property Value
PaymentMethods
public IEnumerable<PaymentMethod> PaymentMethods { get; set; }
Property Value
Phone
public string? Phone { get; set; }
Property Value
PricesIncludeTax
public bool PricesIncludeTax { get; set; }
Property Value
ShippingMethods
public IEnumerable<ShippingMethod> ShippingMethods { get; set; }
Property Value
TaxRates
public IEnumerable<TaxRate> TaxRates { get; set; }
Property Value
UpdatedAt
public DateTime? UpdatedAt { get; set; }