using Newtonsoft.Json; namespace Nop.Plugin.Misc.Omnisend.DTO; public class BatchItemsResponse : BatchResponse { [JsonProperty("errors")] public IList Errors { get; set; } [JsonProperty("responses")] public IList Responses { get; set; } }