FruitBank/Plugins/Nop.Plugin.Misc.Omnisend/DTO/Events/PlacedOrderProperty.cs

9 lines
280 B
C#

using Newtonsoft.Json;
namespace Nop.Plugin.Misc.Omnisend.DTO.Events;
public class PlacedOrderProperty : OrderEventBaseProperty, IEventProperty
{
[JsonIgnore] public string EventName => CustomerEventType.PlacedOrder;
[JsonIgnore] public string EventVersion => "v2";
}