using CoreConnect.Commerce.Core;
namespace CoreConnect.Commerce.Cart;
public class ShippingMethodResponse
public string? Id { get; set; }
public string? Key { get; set; }
public string? Name { get; set; }
public string? Description { get; set; }
public List<Prices>? Prices { get; set; }
public Money? FreeAbove { get; set; }
public Money? Price { get; set; }
public string? Zone { get; set; }
public IEnumerable<Tier>? Tiers { get; set; }
public decimal MinAmount { get; set; }
public Money? Price { get; set; }