Webiant Logo Webiant Logo
  1. No results found.

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

DiscountItem.cs

using Newtonsoft.Json;

namespace Nop.Plugin.Misc.Omnisend.DTO.Events;

public class DiscountItem
{
    [JsonProperty("amount")] public float Amount { get; set; }
    [JsonProperty("code")] public string Code { get; set; }
    [JsonProperty("type")] public string Type { get; set; }
}