10 lines
318 B
C#
10 lines
318 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Nop.Plugin.Misc.Omnisend.DTO;
|
|
|
|
public class BatchRequest
|
|
{
|
|
[JsonProperty("method")] public string Method { get; } = "POST";
|
|
[JsonProperty("endpoint")] public string Endpoint { get; set; }
|
|
[JsonProperty("items")] public List<IBatchSupport> Items { get; set; } = new();
|
|
} |