Try your search with a different keyword or use * as a wildcard.
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 Items { get; set; } = new();
}