Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

CartDto.cs

using Newtonsoft.Json;

namespace Nop.Plugin.Misc.Omnisend.DTO;

public class CartDto : IBatchSupport
{
    [JsonProperty("cartID")] public string CartId { get; set; }
    [JsonProperty("email")] public string Email { get; set; }
    [JsonProperty("currency")] public string Currency { get; set; }
    [JsonProperty("cartSum")] public int CartSum { get; set; }
    [JsonProperty("products")] public IList Products { get; set; }
    [JsonProperty("cartRecoveryUrl")] public string CartRecoveryUrl { get; set; }
}