12 lines
489 B
C#
12 lines
489 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Nop.Plugin.Misc.Omnisend.DTO.Events;
|
|
|
|
public abstract class CartEventBaseProperty
|
|
{
|
|
[JsonProperty("abandonedCheckoutURL")] public string AbandonedCheckoutURL { get; set; }
|
|
[JsonProperty("cartID")] public string CartId { get; set; }
|
|
[JsonProperty("currency")] public string Currency { get; set; }
|
|
[JsonProperty("lineItems")] public IList<ProductItem> LineItems { get; set; }
|
|
[JsonProperty("value")] public float Value { get; set; }
|
|
} |